blob: af039dee4e169054b0cf489bbfcfb93c47b9e586 (
plain)
1
2
3
4
5
6
7
|
#![macro_use]
//! Universal Synchronous/Asynchronous Receiver/Transmitter (USART) driver.
#[cfg_attr(feature = "lpc55-core0", path = "./usart/lpc55.rs")]
mod inner;
pub use inner::*;
|