1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-12 00:10:58 +00:00
trezor-firmware/micropython/stmhal/bootloader/ui.c

11 lines
192 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
#define ui_WHITE 0xFFFF
#define ui_BLACK 0x0000
2016-10-03 14:17:49 +00:00
void screen_welcome(void)
{
display_text(0, 240, "bootloader", 10, FONT_MONO, ui_WHITE, ui_BLACK);
2016-10-03 14:17:49 +00:00
}