kernel/
bsp.rs

1
2
3
4
5
6
7
8
9
//! Conditional reexporting of Board Support Packages

mod device_driver;

#[cfg(any(feature = "bsp_rpi3", feature = "bsp_rpi4", feature = "bsp_rpi5"))]
mod raspberrypi;

#[cfg(any(feature = "bsp_rpi3", feature = "bsp_rpi4", feature = "bsp_rpi5"))]
pub use raspberrypi::*;