cortex-m: remove owned interrupts.

This commit is contained in:
Dario Nieuwenhuis
2023-06-01 02:22:46 +02:00
parent 2a435e53b7
commit 404aa29289
54 changed files with 239 additions and 439 deletions

View File

@ -30,3 +30,4 @@ debug = ["defmt-rtt", "defmt"]
[profile.release]
debug = true
opt-level = 's'

View File

@ -108,7 +108,7 @@ async fn main_task(spawner: Spawner) {
info!("Closing the connection");
socket.abort();
info!("Flushing the RST out...");
socket.flush().await;
_ = socket.flush().await;
info!("Finished with the socket");
}
}