main: lower watchdog timeout to 1s

master
Astro 2019-03-14 22:01:01 +01:00
parent 1f80b456f3
commit 689f33304d
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ fn main() -> ! {
.freeze();
let mut wd = IndependentWatchdog::new(dp.IWDG);
wd.start(8000u32.ms());
wd.start(1000u32.ms());
wd.feed();
let gpioa = dp.GPIOA.split();