4 releases (breaking)

0.4.0 Mar 11, 2024
0.3.0 Dec 9, 2023
0.2.0 Mar 20, 2023
0.1.0 Aug 29, 2021

#713 in Hardware support

Download history 3/week @ 2024-09-16 15/week @ 2024-09-23 16/week @ 2024-09-30 6/week @ 2024-10-07 25/week @ 2024-10-21 57/week @ 2024-10-28 28/week @ 2024-11-04 9/week @ 2024-11-11 35/week @ 2024-11-18 17/week @ 2024-12-02 54/week @ 2024-12-09

106 downloads per month

MIT license

7KB
162 lines

NS16550A

Crates.io docs.rs GitHub

NS16550A UART driver written in Rust.

Installation

Add the following to Cargo.toml:

ns16550a = "0.4"

Example

Example usage:

use ns16550a::*;

fn main() {
    let mut uart = Uart::new(0x1000_0000);
    uart.init(WordLength::EIGHT,
              StopBits::ONE,
              ParityBit::DISABLE,
              ParitySelect::EVEN,
              StickParity::DISABLE,
              Break::DISABLE,
              DMAMode::MODE0,
              Divisor::BAUD1200,
              );
    write!(&mut uart, "Hello, world!\n\r");
    loop {
        uart.put(uart.get().unwrap_or_default());
    }
}

lib.rs:

NS16550A UART driver.

No runtime deps