aboutsummaryrefslogtreecommitdiff
path: root/embassy-rp/src/lib.rs
diff options
context:
space:
mode:
authorkalkyl <[email protected]>2022-12-24 02:51:06 +0100
committerkalkyl <[email protected]>2022-12-24 02:51:06 +0100
commiteaad0cc1dc09e604d137b3a1bdfd3438ff990621 (patch)
tree0295d9c4853b8ef43be33a1203f0aebb5c978b36 /embassy-rp/src/lib.rs
parent67a6e5accfce0963060a20418bab04495c5bf50d (diff)
embassy-rp: Add Watchdog
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 0ea97aecf..9e99b2fbb 100644
--- a/embassy-rp/src/lib.rs
+++ b/embassy-rp/src/lib.rs
@@ -36,6 +36,7 @@ pub mod clocks;
36pub mod flash; 36pub mod flash;
37pub mod multicore; 37pub mod multicore;
38mod reset; 38mod reset;
39pub mod watchdog;
39 40
40// Reexports 41// Reexports
41 42
@@ -119,6 +120,8 @@ embassy_hal_common::peripherals! {
119 120
120 PIO0, 121 PIO0,
121 PIO1, 122 PIO1,
123
124 WATCHDOG,
122} 125}
123 126
124#[link_section = ".boot2"] 127#[link_section = ".boot2"]