rust-raspberrypi-OS-tutorials/07_uart_chainloader/src/bsp.rs

14 lines
324 B
Rust
Raw Normal View History

2019-11-25 18:54:05 +00:00
// SPDX-License-Identifier: MIT OR Apache-2.0
2019-10-17 07:33:42 +00:00
//
// Copyright (c) 2018-2019 Andre Richter <andre.o.richter@gmail.com>
//! Conditional exporting of Board Support Packages.
mod driver;
2019-10-21 19:19:11 +00:00
#[cfg(any(feature = "bsp_rpi3", feature = "bsp_rpi4"))]
mod rpi;
2019-10-17 07:33:42 +00:00
2019-10-21 19:19:11 +00:00
#[cfg(any(feature = "bsp_rpi3", feature = "bsp_rpi4"))]
pub use rpi::*;