aboutsummaryrefslogtreecommitdiff
path: root/embassy-rp/src/lib.rs
diff options
context:
space:
mode:
authorMathias <[email protected]>2022-09-16 06:45:27 +0200
committerMathias <[email protected]>2022-09-16 13:18:23 +0200
commitfeead3ae89d57e9f0ff7d7a264136d3e89aaebcf (patch)
tree5553b485edc241ee2a72c76a08ee955e9cf0bd57 /embassy-rp/src/lib.rs
parent9794bc59cc74598f5131f502153d4288c3261274 (diff)
Implement RealTimeClock for embassy-rp
Diffstat (limited to 'embassy-rp/src/lib.rs')
-rw-r--r--embassy-rp/src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/embassy-rp/src/lib.rs b/embassy-rp/src/lib.rs
index aebbbf567..730354557 100644
--- a/embassy-rp/src/lib.rs
+++ b/embassy-rp/src/lib.rs
@@ -7,6 +7,7 @@ pub(crate) mod fmt;
7pub mod dma; 7pub mod dma;
8pub mod gpio; 8pub mod gpio;
9pub mod interrupt; 9pub mod interrupt;
10pub mod rtc;
10pub mod spi; 11pub mod spi;
11pub mod timer; 12pub mod timer;
12pub mod uart; 13pub mod uart;
@@ -84,6 +85,8 @@ embassy_hal_common::peripherals! {
84 DMA_CH11, 85 DMA_CH11,
85 86
86 USB, 87 USB,
88
89 RTC,
87} 90}
88 91
89#[link_section = ".boot2"] 92#[link_section = ".boot2"]