mirror of
https://github.com/ClusterM/fdskey.git
synced 2025-12-16 19:15:54 +01:00
23 lines
604 B
C
23 lines
604 B
C
#ifndef INC_SPLASH_H_
|
|
#define INC_SPLASH_H_
|
|
|
|
#include "ff.h"
|
|
#include "sdcard.h"
|
|
#include "oled.h"
|
|
|
|
#define SPLASH_UPDATING_IMAGE IMAGE_COGS
|
|
#define SPLASH_REGULAR_FONT FONT_STANDARD_6
|
|
#define SPLASH_ERROR_TITLE_FONT FONT_VERDANA_12_BOLD
|
|
#define SPLASH_ERROR_FONT FONT_STANDARD_6
|
|
|
|
void show_message(char *text, uint8_t wait);
|
|
void show_updating_screen();
|
|
void show_error_screen(char *text, uint8_t fatal);
|
|
void show_error_screen_fr(FRESULT fr, uint8_t fatal);
|
|
void show_error_screen_sd(SD_RESULT r, uint8_t fatal);
|
|
void show_free_memory();
|
|
|
|
extern I2C_HandleTypeDef OLED_I2C;
|
|
|
|
#endif /* INC_SPLASH_H_ */
|