hal-mik32 0.2.1

Rust hardware abstraction layer for MIK32 microcontrollers.
Documentation
1
2
3
4
5
6
7
8
9
//! WDT (watchdog timer) HAL stub

pub struct Wdt;

impl Wdt {
    pub fn new() -> Self {
        Wdt
    }
}