1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-23 23:08:14 +00:00

core/embed: add hint in fatal error on unix (#378)

core/embed: add hint in fatal error on unix
This commit is contained in:
Tomas Susanka 2019-08-02 10:22:07 +02:00 committed by GitHub
commit 776071e220
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,8 +62,8 @@ __fatal_error(const char *expr, const char *msg, const char *file, int line,
display_printf("rev : %s\n", XSTR(GITREV));
printf("rev : %s\n", XSTR(GITREV));
#endif
display_printf("\nPlease contact Trezor support.\n");
printf("\nPlease contact Trezor support.\n");
display_printf("\n\n\nHint:\nIsn't the emulator already running?\n");
printf("Hint:\nIsn't the emulator already running?\n");
hal_delay(3000);
__shutdown();
for (;;)