fix(core): stay_in_bootloader should default to false, not true

pull/1521/head
Pavol Rusnak 3 years ago
parent efac5d56f5
commit ebfd51d818
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

@ -260,7 +260,7 @@ int main(void) {
vendor_header vhdr;
image_header hdr;
secbool stay_in_bootloader = sectrue; // flag to stay in bootloader
secbool stay_in_bootloader = secfalse; // flag to stay in bootloader
// detect whether the devices contains a valid firmware
@ -308,18 +308,18 @@ int main(void) {
if (bootloader_usb_loop(NULL, NULL) != sectrue) {
return 1;
}
} else {
// ... or if user touched the screen on start
// ... or we have stay_in_bootloader flag to force it
if (touched || stay_in_bootloader == sectrue) {
// no ui_fadeout(); - we already start from black screen
ui_screen_info(secfalse, &vhdr, &hdr);
ui_fadein();
// and start the usb loop
if (bootloader_usb_loop(&vhdr, &hdr) != sectrue) {
return 1;
}
}
// ... or if user touched the screen on start
// ... or we have stay_in_bootloader flag to force it
if (touched || stay_in_bootloader == sectrue) {
// no ui_fadeout(); - we already start from black screen
ui_screen_info(secfalse, &vhdr, &hdr);
ui_fadein();
// and start the usb loop
if (bootloader_usb_loop(&vhdr, &hdr) != sectrue) {
return 1;
}
}

Loading…
Cancel
Save