aboutsummaryrefslogtreecommitdiff
path: root/tests/stm32/src/bin/stop.rs
diff options
context:
space:
mode:
authorDion Dokter <[email protected]>2024-08-05 15:07:51 +0200
committerDion Dokter <[email protected]>2024-08-05 15:07:51 +0200
commit3cd20814501d03852a3c30facbd204dffcf048db (patch)
tree7d813088df72bffe64b40f531028f9864076fbaa /tests/stm32/src/bin/stop.rs
parent5884576b88e7ec7e26ec1c9b9f61e253cb0e5ea6 (diff)
Fix tests
Diffstat (limited to 'tests/stm32/src/bin/stop.rs')
-rw-r--r--tests/stm32/src/bin/stop.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/stm32/src/bin/stop.rs b/tests/stm32/src/bin/stop.rs
index c1106bb2f..772bc527c 100644
--- a/tests/stm32/src/bin/stop.rs
+++ b/tests/stm32/src/bin/stop.rs
@@ -58,7 +58,7 @@ async fn async_main(spawner: Spawner) {
58 config.rcc.hsi = Some(HSIPrescaler::DIV4); // 64 MHz HSI will need a /4 58 config.rcc.hsi = Some(HSIPrescaler::DIV4); // 64 MHz HSI will need a /4
59 } 59 }
60 60
61 let p = embassy_stm32::init(config); 61 let p = init_with_config(config);
62 info!("Hello World!"); 62 info!("Hello World!");
63 63
64 let now = NaiveDate::from_ymd_opt(2020, 5, 15) 64 let now = NaiveDate::from_ymd_opt(2020, 5, 15)