nrio-usb-disk/source/ui.h
ApacheThunder 0eda3c329c Add gitignore and custom font
* Added a custom font using Misaki Gothic sourced from GodMode9i's repo.
* Some of my own attempts of improvements though not sure they are doing
much really. :P
2024-11-05 01:19:52 -06:00

22 lines
495 B
C

// SPDX-License-Identifier: MIT
//
// SPDX-FileContributor: Adrian "asie" Siekierka, 2024
#ifndef _UI_H_
#define _UI_H_
#define UI_COLOR_ERROR "\x1b[31;1m"
#define UI_COLOR_INFO "\x1b[37;1m"
#define UI_COLOR_SUCCESS "\x1b[32;1m"
#define UI_COLOR_WARNING "\x1b[33;1m"
ITCM_CODE void ui_toggle_blink_activity(void);
ITCM_CODE void ui_toggle_blink_write_activity(void);
void ui_init(void);
void ui_show_chip_id(void);
void ui_select_top(void);
void ui_select_bottom(void);
#endif /* _UI_H_ */