#include "config.h" #include "typedef.h" #ifndef _TFT_FONT_H_ #define _TFT_FONT_H_ #if GUI_SELECT #define BIT(n) (1ul << (n)) typedef struct { const uint8_t *font; uint16_t wid; uint16_t hei; uint16_t start; uint16_t end; } gui_font_t; extern gui_font_t gui_font; #endif #endif