Skip to main content

hal_mik32/
timer16.rs

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