bumped PAC to v0.3.0

This commit is contained in:
2025-02-13 16:11:27 +01:00
parent 464cc60c75
commit 273be8b3cf
10 changed files with 24 additions and 25 deletions

View File

@ -80,12 +80,12 @@ impl Wdt {
#[inline]
pub fn disable_reset(&mut self) {
self.wdt.wdogcontrol().modify(|_, w| w.resen().clear_bit())
self.wdt.wdogcontrol().modify(|_, w| w.resen().clear_bit());
}
#[inline]
pub fn enable_reset(&mut self) {
self.wdt.wdogcontrol().modify(|_, w| w.resen().set_bit())
self.wdt.wdogcontrol().modify(|_, w| w.resen().set_bit());
}
#[inline]