1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// SPDX-License-Identifier: MIT OR Apache-2.0 // // Copyright (c) 2018-2023 Andre Richter <andre.o.richter@gmail.com> //! Device driver. #[cfg(feature = "rpi4")] mod arm; #[cfg(any(feature = "rpi3", feature = "rpi4"))] mod bcm; mod common; #[cfg(feature = "rpi4")] pub use arm::*; #[cfg(any(feature = "rpi3", feature = "rpi4"))] pub use bcm::*;