mirror of
https://github.com/ApacheThunder/nrio-usb-disk.git
synced 2025-06-18 18:55:34 -04:00

* 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
22 lines
495 B
C
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_ */
|
|
|