mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-05-03 15:39:03 +00:00
12 lines
205 B
C
12 lines
205 B
C
#ifndef __BOOTLOADER_UI_H__
|
|
#define __BOOTLOADER_UI_H__
|
|
|
|
#define ui_WHITE 0xFFFF
|
|
#define ui_BLACK 0x0000
|
|
|
|
void screen_stage1(void);
|
|
void screen_stage2_jump(void);
|
|
void screen_stage2_invalid(void);
|
|
|
|
#endif
|