ch58x-hal 0.0.2

HAL for the CH583/CH582/CH581 RISC-V BLE microcotrollers from WCH
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod time_driver_systick;

// This should be called after global clocks inited
pub fn init() {
    time_driver_systick::init();

    unsafe {
        crate::gpio::init();
    }
}