va108xx-hal/src/lib.rs

25 lines
382 B
Rust
Raw Permalink Normal View History

#![no_std]
pub use va108xx;
pub use va108xx as pac;
pub mod clock;
pub mod gpio;
pub mod i2c;
pub mod prelude;
2021-12-05 17:28:30 +01:00
pub mod pwm;
pub mod spi;
pub mod time;
pub mod timer;
pub mod typelevel;
pub mod uart;
2021-12-04 21:54:22 +01:00
pub mod utility;
mod private {
/// Super trait used to mark traits with an exhaustive set of
/// implementations
pub trait Sealed {}
}
pub(crate) use private::Sealed;