mcu_ab568x/userboot240328/app/platform/gui/tft_font.h
2025-05-30 18:03:10 +08:00

22 lines
328 B
C

#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