Disable normal mode when flash is invalid

This commit is contained in:
Puck Meerburg
2026-01-01 11:13:58 +00:00
parent 0a5e10134e
commit c2361774c1
2 changed files with 13 additions and 1 deletions

View File

@@ -78,6 +78,8 @@ int main_handler(void) {
btn2_was_pressed = button_pressed[1];
btn1_was_pressed = button_pressed[0];
if (!flash_header_valid) return 1;
return 0;
}