Skip to content

jeudine/NS16550A

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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());
    }
}

About

NS16550A UART driver written in Rust.

Resources

License

Stars

Watchers

Forks

Languages