From 10208e1ac015ff8f90d19fd30c2df7cbf8969e6c Mon Sep 17 00:00:00 2001 From: Astro Date: Thu, 10 Sep 2020 23:28:00 +0200 Subject: [PATCH] main: bump WATCHDOG_INTERVAL to 1s required for running Channels.calibrate_dac_value() --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index ec289c1..ca7efe4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -57,7 +57,7 @@ mod channel_state; const HSE: MegaHertz = MegaHertz(8); #[cfg(not(feature = "semihosting"))] -const WATCHDOG_INTERVAL: u32 = 100; +const WATCHDOG_INTERVAL: u32 = 1_000; #[cfg(feature = "semihosting")] const WATCHDOG_INTERVAL: u32 = 30_000;