mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-07-06 23:02:33 +00:00
fix(core): stay_in_bootloader should default to false, not true
This commit is contained in:
parent
efac5d56f5
commit
ebfd51d818
@ -260,7 +260,7 @@ int main(void) {
|
|||||||
|
|
||||||
vendor_header vhdr;
|
vendor_header vhdr;
|
||||||
image_header hdr;
|
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
|
// detect whether the devices contains a valid firmware
|
||||||
|
|
||||||
@ -308,18 +308,18 @@ int main(void) {
|
|||||||
if (bootloader_usb_loop(NULL, NULL) != sectrue) {
|
if (bootloader_usb_loop(NULL, NULL) != sectrue) {
|
||||||
return 1;
|
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
|
// ... or if user touched the screen on start
|
||||||
if (bootloader_usb_loop(&vhdr, &hdr) != sectrue) {
|
// ... or we have stay_in_bootloader flag to force it
|
||||||
return 1;
|
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…
Reference in New Issue
Block a user