run idle kernel on flash #325

Merged
sb10q merged 2 commits from srenblad/artiq-zynq:run_idle_on_flash_alt into master 2024-09-14 11:38:03 +08:00
1 changed files with 12 additions and 10 deletions
Showing only changes of commit e7614d2e8e - Show all commits

View File

@ -837,6 +837,7 @@ pub fn main(timer: GlobalTimer, cfg: Config) {
can_restart_idle.signal();
match maybe_idle_kernel {
Some(buffer) => {
loop {
info!("loading idle kernel");
match handle_flash_kernel(&buffer, &control, &up_destinations, &aux_mutex, &routing_table, timer).await {
Ok(_) => {
@ -848,6 +849,7 @@ pub fn main(timer: GlobalTimer, cfg: Config) {
},
Err(_) => warn!("idle kernel loading error")
}
}
},
None => info!("no idle kernel found")
}