This repository has been archived on 2024-06-16. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
va108xx-hal/src/lib.rs
T

22 lines
339 B
Rust
Raw Normal View History

2021-11-06 01:27:04 +01:00
#![no_std]
pub use va108xx;
2021-11-20 23:57:08 +01:00
pub use va108xx as pac;
2021-11-06 01:27:04 +01:00
2021-11-08 01:40:01 +01:00
pub mod clock;
2021-11-06 01:27:04 +01:00
pub mod gpio;
2021-11-06 16:16:53 +01:00
pub mod prelude;
2021-11-20 23:57:08 +01:00
pub mod spi;
2021-11-08 01:40:01 +01:00
pub mod time;
pub mod timer;
2021-11-11 17:20:19 +01:00
pub mod typelevel;
2021-11-09 18:30:46 +01:00
pub mod uart;
2021-11-08 01:40:01 +01:00
2021-11-11 17:20:19 +01:00
mod private {
/// Super trait used to mark traits with an exhaustive set of
/// implementations
2021-11-09 18:30:46 +01:00
pub trait Sealed {}
}
2021-11-11 17:20:19 +01:00
pub(crate) use private::Sealed;