PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- // ILI Font file definition.
- #ifndef _ILI9341_FONTS_H_
- #define _ILI9341_FONTS_H_
- typedef struct {
- const unsigned char *index;
- const unsigned char *unicode;
- const unsigned char *data;
- unsigned char version;
- unsigned char reserved;
- unsigned char index1_first;
- unsigned char index1_last;
- unsigned char index2_first;
- unsigned char index2_last;
- unsigned char bits_index;
- unsigned char bits_width;
- unsigned char bits_height;
- unsigned char bits_xoffset;
- unsigned char bits_yoffset;
- unsigned char bits_delta;
- unsigned char line_space;
- unsigned char cap_height;
- } ILI9341_t3_font_t;
- #endif
|