stm32/tests: add stm32h753zi, stm32h7a3zi.

This commit is contained in:
Dario Nieuwenhuis
2023-10-21 02:53:48 +02:00
parent b1d0947a18
commit 3d03c18d4f
7 changed files with 66 additions and 7 deletions

View File

@ -217,8 +217,7 @@ async fn main(_spawner: Spawner) {
}
fn delay() {
#[cfg(feature = "stm32h755zi")]
cortex_m::asm::delay(10000);
#[cfg(not(feature = "stm32h755zi"))]
#[cfg(any(feature = "stm32h755zi", feature = "stm32h753zi", feature = "stm32h7a3zi"))]
cortex_m::asm::delay(9000);
cortex_m::asm::delay(1000);
}