comms: remove idle kernel DRTIO error case

This commit is contained in:
Simon Renblad 2024-07-31 18:00:01 +08:00 committed by sb10q
parent fee30033ec
commit fad1db9796
1 changed files with 0 additions and 5 deletions

View File

@ -707,11 +707,6 @@ async fn load_and_run_idle_kernel(
info!("Loading idle kernel"); info!("Loading idle kernel");
let res = handle_flash_kernel(buffer, control, up_destinations, aux_mutex, routing_table, timer).await; let res = handle_flash_kernel(buffer, control, up_destinations, aux_mutex, routing_table, timer).await;
match res { match res {
#[cfg(has_drtio)]
Err(Error::DestinationDown) => {
let mut countdown = timer.countdown();
delay(&mut countdown, Milliseconds(500)).await;
}
Err(_) => warn!("error loading idle kernel"), Err(_) => warn!("error loading idle kernel"),
_ => (), _ => (),
} }