aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32f0/src
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-06-19 03:07:26 +0200
committerDario Nieuwenhuis <[email protected]>2023-06-19 03:22:12 +0200
commit558918651ee99024876fb1f85a559d46edba9548 (patch)
treea93d38e4ef400c66a47e624b87818063f86a4226 /examples/stm32f0/src
parentadaed307b4d81ed09611e496524b1d96ad04c60d (diff)
stm32: update stm32-metapac.
Diffstat (limited to 'examples/stm32f0/src')
-rw-r--r--examples/stm32f0/src/bin/wdg.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/stm32f0/src/bin/wdg.rs b/examples/stm32f0/src/bin/wdg.rs
index 80e76f901..a44b17528 100644
--- a/examples/stm32f0/src/bin/wdg.rs
+++ b/examples/stm32f0/src/bin/wdg.rs
@@ -16,10 +16,10 @@ async fn main(_spawner: Spawner) {
16 let mut wdg = IndependentWatchdog::new(p.IWDG, 20_000_00); 16 let mut wdg = IndependentWatchdog::new(p.IWDG, 20_000_00);
17 17
18 info!("Watchdog start"); 18 info!("Watchdog start");
19 unsafe { wdg.unleash() }; 19 wdg.unleash();
20 20
21 loop { 21 loop {
22 Timer::after(Duration::from_secs(1)).await; 22 Timer::after(Duration::from_secs(1)).await;
23 unsafe { wdg.pet() }; 23 wdg.pet();
24 } 24 }
25} 25}