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.

ILI9341_fonts.h 598B

1234567891011121314151617181920212223
  1. // ILI Font file definition.
  2. #ifndef _ILI9341_FONTS_H_
  3. #define _ILI9341_FONTS_H_
  4. typedef struct {
  5. const unsigned char *index;
  6. const unsigned char *unicode;
  7. const unsigned char *data;
  8. unsigned char version;
  9. unsigned char reserved;
  10. unsigned char index1_first;
  11. unsigned char index1_last;
  12. unsigned char index2_first;
  13. unsigned char index2_last;
  14. unsigned char bits_index;
  15. unsigned char bits_width;
  16. unsigned char bits_height;
  17. unsigned char bits_xoffset;
  18. unsigned char bits_yoffset;
  19. unsigned char bits_delta;
  20. unsigned char line_space;
  21. unsigned char cap_height;
  22. } ILI9341_t3_font_t;
  23. #endif