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