1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-24 07:18:09 +00:00
trezor-firmware/micropython/stmhal/bootloader/ui.c

18 lines
270 B
C
Raw Normal View History

2016-10-04 16:01:48 +00:00
#include "ui.h"
2016-10-03 14:17:49 +00:00
#include "display.h"
2016-10-04 16:01:48 +00:00
2017-02-11 15:47:36 +00:00
void screen_stage1(void)
{
2017-02-16 12:48:28 +00:00
display_print("BL stage 1\n", -1);
2017-02-11 15:47:36 +00:00
}
void screen_stage2_jump(void)
{
2017-02-16 12:48:28 +00:00
display_print("BL stage 2 jump\n", -1);
2017-02-11 15:47:36 +00:00
}
2017-02-11 15:47:36 +00:00
void screen_stage2_invalid(void)
2016-10-03 14:17:49 +00:00
{
2017-02-16 12:48:28 +00:00
display_print("BL stage 2 invalid\n", -1);
2016-10-03 14:17:49 +00:00
}