hk32-partial-hal 0.1.1

HK32 partial HAL
1
2
3
4
5
6
7
8
9
10
#![no_std]

mod chip;
pub mod gpio;
pub mod spi;

pub use chip::pac;
pub use chip::peripherals; // peripherals define
pub use chip::Peripherals; // peripherals struct
pub use chip::interrupt;