mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-01-23 13:51:00 +00:00
35 lines
869 B
C
35 lines
869 B
C
#ifndef __BOOTUI_H__
|
|
#define __BOOTUI_H__
|
|
|
|
#include "secbool.h"
|
|
#include "image.h"
|
|
|
|
void ui_screen_boot(const vendor_header * const vhdr, const image_header * const hdr);
|
|
void ui_screen_boot_wait(int delay);
|
|
void ui_screen_boot_click(void);
|
|
|
|
void ui_screen_first(void);
|
|
void ui_screen_second(void);
|
|
void ui_screen_third(void);
|
|
void ui_screen_info(secbool buttons, const vendor_header * const vhdr, const image_header * const hdr);
|
|
|
|
void ui_screen_install_confirm(void);
|
|
void ui_screen_install(void);
|
|
void ui_screen_install_progress_erase(int pos, int len);
|
|
void ui_screen_install_progress_upload(int pos);
|
|
|
|
void ui_screen_wipe_confirm(void);
|
|
void ui_screen_wipe(void);
|
|
void ui_screen_wipe_progress(int pos, int len);
|
|
|
|
void ui_screen_done(int restart);
|
|
|
|
void ui_screen_fail(void);
|
|
|
|
void ui_fadein(void);
|
|
void ui_fadeout(void);
|
|
|
|
secbool ui_button_response(void);
|
|
|
|
#endif
|