Skip to main content

hal_mik32/
timer32_0.rs

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