Rust edition bumped & UART implementation

- Also adds UART example
This commit is contained in:
2021-11-09 18:30:46 +01:00
parent 541524c59b
commit b18e32e0cc
9 changed files with 505 additions and 18 deletions

View File

@ -7,5 +7,10 @@ pub mod gpio;
pub mod prelude;
pub mod time;
pub mod timer;
pub mod uart;
pub use va108xx as pac;
mod sealed {
pub trait Sealed {}
}