mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-01-12 08:20:56 +00:00
21 lines
441 B
C
21 lines
441 B
C
#include "ui.h"
|
|
#include "display.h"
|
|
|
|
void screen_stage1(void)
|
|
{
|
|
display_clear();
|
|
display_text(0, 240, "BL stage 1", -1, FONT_MONO, ui_WHITE, ui_BLACK);
|
|
}
|
|
|
|
void screen_stage2_jump(void)
|
|
{
|
|
display_clear();
|
|
display_text(0, 240, "BL stage 2 jump", -1, FONT_MONO, ui_WHITE, ui_BLACK);
|
|
}
|
|
|
|
void screen_stage2_invalid(void)
|
|
{
|
|
display_clear();
|
|
display_text(0, 240, "BL stage 2 invalid", -1, FONT_MONO, ui_WHITE, ui_BLACK);
|
|
}
|