From d1cfcb30e8c07ae9f3ec02930d38c49ae8e209ea Mon Sep 17 00:00:00 2001 From: Victoria Fischer Date: Mon, 22 Dec 2025 14:59:51 +0100 Subject: [PATCH] main: bark on watchdog logs --- src/bin/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/main.rs b/src/bin/main.rs index de55a67..c63c4e3 100644 --- a/src/bin/main.rs +++ b/src/bin/main.rs @@ -190,6 +190,7 @@ async fn wdt_task(mut wdt: Wdt>) { loop { // Watchdog is set to trip after 5 seconds, so we wait just long enough before it trips // TODO: We should maybe extend this timeout to 30s or 1m when the system is sleeping + trace!("Bark wdt"); wdt.feed(); Timer::after_secs(3).await; }