Skip to main content

hal_mik32/
rtc.rs

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