va108xx_hal/uart/
mod.rs

1//! # API for the UART peripheral
2//!
3//! The core of this API are the [Uart], [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)
13//! - [UART with IRQ and RTIC](https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/src/branch/main/examples/rtic/src/bin/uart-echo-rtic.rs)
14//! - [Flashloader exposing a CCSDS interface via UART](https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/src/branch/main/flashloader)
15//! - [Async UART RX example](https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/src/branch/main/examples/embassy/src/bin/async-uart-rx.rs)
16//! - [Async UART TX example](https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/src/branch/main/examples/embassy/src/bin/async-uart-tx.rs)
17pub use vorago_shared_hal::uart::*;