1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
use crate::ehal::watchdog;
use crate::pac::WDT;
#[repr(u8)]
#[derive(Copy, Clone, Eq, PartialEq, Debug)]
pub enum WatchdogTimeout {
Cycles8 = 0,
Cycles16,
Cycles32,
Cycles64,
Cycles128,
Cycles256,
Cycles512,
Cycles1K,
Cycles2K,
Cycles4K,
Cycles8K,
Cycles16K,
}
pub struct Watchdog {
wdt: WDT,
}
impl Watchdog {
pub fn new(wdt: WDT) -> Self {
Self { wdt }
}
}
impl watchdog::Watchdog for Watchdog {
fn feed(&mut self) {
self.wdt.clear.write(|w| unsafe { w.clear().bits(0xA5) });
}
}
impl watchdog::WatchdogDisable for Watchdog {
fn disable(&mut self) {
self.wdt.ctrla.write(|w| w.enable().clear_bit());
while self.wdt.syncbusy.read().enable().bit_is_set() {}
}
}
impl watchdog::WatchdogEnable for Watchdog {
type Time = u8;
fn start<T>(&mut self, period: T)
where
T: Into<Self::Time>,
{
self.wdt
.config
.write(|w| unsafe { w.per().bits(period.into()) });
self.wdt.ctrla.write(|w| w.enable().set_bit());
while self.wdt.syncbusy.read().enable().bit_is_set() {}
}
}