caravel-hal 1.0.0

Hardware Abstraction Layer Crate for the Caravel management SoC.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![no_std]

mod gpio;
mod interrupts;
mod timer;
mod uart;
mod user_io;

pub use gpio::Gpio;
pub use timer::Timer0;
pub use uart::Uart;
pub use user_io::UserIo;

pub use interrupts::enable_caravel_interrupts;