LoRa_APRS_iGate/src/Display/Fonts/FontDesc.h

18 lines
273 B
C
Raw Normal View History

#ifndef FONT_DESC_H
#define FONT_DESC_H
#include <inttypes.h>
2023-09-23 15:44:43 +02:00
struct fontDesc_t {
uint16_t totalSize;
uint8_t widthInPixel;
uint8_t heightInPixel;
uint8_t bitsPerPixel;
uint8_t firstChar;
uint8_t lastChar;
2023-09-23 15:44:43 +02:00
unsigned char const *const pData;
};
#endif