embassy/examples/stm32f4/src/bin/wdt.rs

43 lines
992 B
Rust
Raw Normal View History

2022-07-10 19:38:30 +02:00
#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]
use defmt::*;
use embassy_executor::Spawner;
2022-07-10 19:38:30 +02:00
use embassy_stm32::gpio::{Level, Output, Speed};
use embassy_stm32::wdg::IndependentWatchdog;
use embassy_time::Timer;
2022-07-10 19:38:30 +02:00
use {defmt_rtt as _, panic_probe as _};
#[embassy_executor::main]
async fn main(_spawner: Spawner) {
let p = embassy_stm32::init(Default::default());
2022-07-10 19:38:30 +02:00
info!("Hello World!");
let mut led = Output::new(p.PB7, Level::High, Speed::Low);
2022-07-10 23:00:33 +02:00
let mut wdt = IndependentWatchdog::new(p.IWDG, 1_000_000);
2023-06-19 03:07:26 +02:00
wdt.unleash();
2022-07-10 19:38:30 +02:00
let mut i = 0;
loop {
info!("high");
led.set_high();
Timer::after_millis(300).await;
2022-07-10 19:38:30 +02:00
info!("low");
led.set_low();
Timer::after_millis(300).await;
2022-07-10 19:38:30 +02:00
2022-07-10 20:08:30 +02:00
// Pet watchdog for 5 iterations and then stop.
// MCU should restart in 1 second after the last pet.
2022-07-10 19:38:30 +02:00
if i < 5 {
info!("Petting watchdog");
2023-06-19 03:07:26 +02:00
wdt.pet();
2022-07-10 19:38:30 +02:00
}
i += 1;
}
}