fonts.h 453 B

123456789101112131415161718192021
  1. #ifndef __FONTS_H__
  2. #define __FONTS_H__
  3. #include "stdint.h"
  4. typedef struct {
  5. uint8_t FontWidth; /*!< Font width in pixels */
  6. uint8_t FontHeight; /*!< Font height in pixels */
  7. const uint16_t *data; /*!< Pointer to data font data array */
  8. } FontDef_t;
  9. typedef struct {
  10. uint16_t Length; /*!< String length in units of pixels */
  11. uint16_t Height; /*!< String height in units of pixels */
  12. } FONTS_SIZE_t;
  13. FontDef_t Font_7x10;
  14. #endif