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

14 lines
349 B
Rust
Raw Normal View History

2019-11-25 18:54:05 +00:00
// SPDX-License-Identifier: MIT OR Apache-2.0
2019-10-08 20:13:25 +00:00
//
2022-01-15 20:50:11 +00:00
// Copyright (c) 2018-2022 Andre Richter <andre.o.richter@gmail.com>
2019-10-08 20:13:25 +00:00
//! Conditional reexporting of Board Support Packages.
2019-10-08 20:13:25 +00:00
2020-03-28 12:26:38 +00:00
mod device_driver;
2019-10-21 19:19:11 +00:00
#[cfg(any(feature = "bsp_rpi3", feature = "bsp_rpi4"))]
2020-03-28 12:26:38 +00:00
mod raspberrypi;
2019-10-08 20:13:25 +00:00
2019-10-21 19:19:11 +00:00
#[cfg(any(feature = "bsp_rpi3", feature = "bsp_rpi4"))]
2020-03-28 12:26:38 +00:00
pub use raspberrypi::*;