Skip to content
Snippets Groups Projects
Commit 9207eeed authored by rahix's avatar rahix
Browse files

feat(lifecycle): Return to menu if loading failed

If an asynchronous load fails, return to the menu instead of leaving
card10 in a state where no app is running.

Ref: #228
parent f1b764aa
No related branches found
No related tags found
1 merge request!445Fix lockup when attempting to load a l0dable with disabled ELF loading
Pipeline #5094 passed
......@@ -402,8 +402,13 @@ void vLifecycleTask(void *pvParameters)
}
}
do_load((struct load_info *)&async_load);
ret = do_load((struct load_info *)&async_load);
mutex_unlock(&core1_mutex);
if (ret < 0) {
LOG_ERR("lifecycle", "Error loading payload: %d", ret);
return_to_menu();
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment