2019-04-25 14:38:56 +00:00
|
|
|
/*
|
2019-06-17 18:27:55 +00:00
|
|
|
* This file is part of the Trezor project, https://trezor.io/
|
2019-04-25 14:38:56 +00:00
|
|
|
*
|
|
|
|
* Copyright (c) SatoshiLabs
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
2019-05-13 15:20:35 +00:00
|
|
|
void __shutdown(void) {
|
|
|
|
printf("SHUTDOWN\n");
|
|
|
|
exit(3);
|
2019-04-25 14:38:56 +00:00
|
|
|
}
|
|
|
|
|
2024-06-12 06:57:53 +00:00
|
|
|
void __fatal_error(const char *msg, const char *file, int line) {
|
2019-05-13 15:20:35 +00:00
|
|
|
printf("\nFATAL ERROR:\n");
|
|
|
|
if (msg) {
|
|
|
|
printf("msg : %s\n", msg);
|
|
|
|
}
|
|
|
|
if (file) {
|
|
|
|
printf("file: %s:%d\n", file, line);
|
|
|
|
}
|
|
|
|
__shutdown();
|
2019-04-25 14:38:56 +00:00
|
|
|
}
|
|
|
|
|
2022-05-05 11:47:19 +00:00
|
|
|
void show_wipe_code_screen(void) {}
|
|
|
|
void show_pin_too_many_screen(void) {}
|