Sorry 😅
This commit is contained in:
dimpolo 2024-10-07 18:19:24 +02:00 committed by GitHub
parent af3f892381
commit 754d8aa585
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -409,7 +409,7 @@ impl<'d> Rtc<'d> {
let rtc_cntl = unsafe { &*LP_AON::ptr() };
rtc_cntl
.store4()
.modify(|r, w| unsafe { w.bits(r.bits() & 1) });
.modify(|r, w| unsafe { w.bits(r.bits() | 1) });
}
}
impl<'d> crate::private::Sealed for Rtc<'d> {}