We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cdee8b commit 102d111Copy full SHA for 102d111
va108xx-hal/src/uart/mod.rs
@@ -1,5 +1,12 @@
1
//! # API for the UART peripheral
2
//!
3
+//! The core of this API are the [Uart], [UartBase], [Rx] and [Tx] structures.
4
+//! The RX structure also has a dedicated [RxWithInterrupt] variant which allows reading the receiver
5
+//! using interrupts.
6
+//!
7
+//! The [rx_asynch] and [tx_asynch] modules provide an asynchronous non-blocking API for the UART
8
+//! peripheral.
9
10
//! ## Examples
11
12
//! - [UART simple example](https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/src/branch/main/examples/simple/examples/uart.rs)
0 commit comments