summaryrefslogtreecommitdiff
path: root/embassy-rp/src/rtc/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'embassy-rp/src/rtc/mod.rs')
-rw-r--r--embassy-rp/src/rtc/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/embassy-rp/src/rtc/mod.rs b/embassy-rp/src/rtc/mod.rs
index 7f3bbbe7..e4b6f0b1 100644
--- a/embassy-rp/src/rtc/mod.rs
+++ b/embassy-rp/src/rtc/mod.rs
@@ -145,6 +145,8 @@ impl<'d, T: Instance> RealTimeClock<'d, T> {
filter.write_setup_1(w);
});
+ self.inner.regs().inte().modify(|w| w.set_rtc(true));
+
// Set the enable bit and check if it is set
self.inner.regs().irq_setup_0().modify(|w| w.set_match_ena(true));
while !self.inner.regs().irq_setup_0().read().match_active() {