da14531_hal/lib.rs
1#![no_std]
2
3pub mod crg_aon;
4pub mod crg_top;
5pub mod gpadc;
6pub mod gpio;
7pub mod i2c;
8pub mod nvic;
9pub mod otpc;
10pub mod sys_wdog;
11pub mod timer;
12pub mod wkup;
13
14pub use cortex_m as cm;
15pub use da14531 as pac;
16pub use embedded_hal as hal;
17
18mod sealed {
19 pub trait Sealed {}
20}
21
22pub(crate) use sealed::Sealed;