rust-raspberrypi-OS-tutorials/10_privilege_level/src/bsp/device_driver.rs

13 lines
289 B
Rust
Raw Normal View History

2019-11-25 18:54:05 +00:00
// SPDX-License-Identifier: MIT OR Apache-2.0
2019-11-01 22:03:29 +00:00
//
2020-01-01 23:41:03 +00:00
// Copyright (c) 2018-2020 Andre Richter <andre.o.richter@gmail.com>
2019-11-01 22:03:29 +00:00
2020-03-28 12:25:18 +00:00
//! Device driver.
2019-11-01 22:03:29 +00:00
#[cfg(any(feature = "bsp_rpi3", feature = "bsp_rpi4"))]
mod bcm;
2020-07-12 10:44:03 +00:00
mod common;
2019-11-01 22:03:29 +00:00
#[cfg(any(feature = "bsp_rpi3", feature = "bsp_rpi4"))]
pub use bcm::*;