Add small delay to stabilize power.

This commit is contained in:
2025-10-17 12:12:46 +02:00
parent 4e2f389d21
commit a17b25dba0
3 changed files with 7 additions and 3 deletions

View File

@@ -67,6 +67,10 @@ async fn main(spawner: Spawner) {
}
let p = embassy_stm32::init(config);
// Small delay to allow power to stabilize
Timer::after_millis(100).await;
info!("Hello World!");
// let mut led = Output::new(p.PA5, Level::High, Speed::Low);