- First SPI HAL implementation for blocking mode - Added example for SPI as well which uses loopback mode and regular mode
22 lines
339 B
Rust
22 lines
339 B
Rust
#![no_std]
|
|
|
|
pub use va108xx;
|
|
pub use va108xx as pac;
|
|
|
|
pub mod clock;
|
|
pub mod gpio;
|
|
pub mod prelude;
|
|
pub mod spi;
|
|
pub mod time;
|
|
pub mod timer;
|
|
pub mod typelevel;
|
|
pub mod uart;
|
|
|
|
mod private {
|
|
/// Super trait used to mark traits with an exhaustive set of
|
|
/// implementations
|
|
pub trait Sealed {}
|
|
}
|
|
|
|
pub(crate) use private::Sealed;
|