Skip to main content

hal_mik32/
timer32_1.rs

1//! Timer32_1 HAL stub
2
3pub struct Timer32_1;
4
5impl Timer32_1 {
6    pub fn new() -> Self {
7        Timer32_1
8    }
9}