aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorpkoevesdi <[email protected]>2024-04-29 22:38:58 +0200
committerGitHub <[email protected]>2024-04-29 22:38:58 +0200
commit5df703cf4b22f2fef2c2bed9fc6ceaca98d8ddfb (patch)
tree112a24a5921d7c56d825de3cb60d8f731d8a562a /examples
parentb6f9dbfb5b66190cd8d798ec0f99a7f3cdeb8ea0 (diff)
Update wdt.rs: added missing type
Diffstat (limited to 'examples')
-rw-r--r--examples/stm32u0/src/bin/wdt.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/stm32u0/src/bin/wdt.rs b/examples/stm32u0/src/bin/wdt.rs
index 8f9ea516d..c0db89b22 100644
--- a/examples/stm32u0/src/bin/wdt.rs
+++ b/examples/stm32u0/src/bin/wdt.rs
@@ -18,7 +18,7 @@ async fn main(_spawner: Spawner) {
18 let mut wdt = IndependentWatchdog::new(p.IWDG, 1_000_000); 18 let mut wdt = IndependentWatchdog::new(p.IWDG, 1_000_000);
19 wdt.unleash(); 19 wdt.unleash();
20 20
21 let mut i = 0; 21 let mut i:u8 = 0;
22 22
23 loop { 23 loop {
24 info!("high"); 24 info!("high");