removed hardcoded addresses in memory.x

This commit is contained in:
goueslati
2023-05-04 11:02:17 +01:00
parent 3e728d5e73
commit 007f452927
4 changed files with 25 additions and 39 deletions

View File

@ -6,6 +6,7 @@ use defmt::*;
use embassy_executor::Spawner;
use embassy_stm32::ipcc::{Config, Ipcc};
use embassy_stm32::tl_mbox::TlMbox;
use embassy_time::{Duration, Timer};
use {defmt_rtt as _, panic_probe as _};
#[embassy_executor::main]
@ -38,5 +39,7 @@ async fn main(_spawner: Spawner) {
break;
}
}
Timer::after(Duration::from_millis(500)).await;
}
}