diff --git a/src/runtime/src/comms.rs b/src/runtime/src/comms.rs index 979b5d9..e7c8a14 100644 --- a/src/runtime/src/comms.rs +++ b/src/runtime/src/comms.rs @@ -707,11 +707,6 @@ async fn load_and_run_idle_kernel( info!("Loading idle kernel"); let res = handle_flash_kernel(buffer, control, up_destinations, aux_mutex, routing_table, timer).await; 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"), _ => (), }