From eaad0cc1dc09e604d137b3a1bdfd3438ff990621 Mon Sep 17 00:00:00 2001 From: kalkyl Date: Sat, 24 Dec 2022 02:51:06 +0100 Subject: embassy-rp: Add Watchdog --- embassy-rp/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'embassy-rp/src/lib.rs') 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; pub mod flash; pub mod multicore; mod reset; +pub mod watchdog; // Reexports @@ -119,6 +120,8 @@ embassy_hal_common::peripherals! { PIO0, PIO1, + + WATCHDOG, } #[link_section = ".boot2"] -- cgit