blob: 3049cc12dc7c648f7fd61eaf5a2535b1b2ce855f (
plain)
1
2
3
4
5
6
7
|
//! General purpose input/output (GPIO) driver.
#![macro_use]
#[cfg_attr(feature = "lpc55", path = "./gpio/lpc55.rs")]
#[cfg_attr(rt1xxx, path = "./gpio/rt1xxx.rs")]
mod inner;
pub use inner::*;
|