mirror of
https://github.com/lora-aprs/LoRa_APRS_iGate.git
synced 2025-12-06 07:42:00 +01:00
18 lines
273 B
C
18 lines
273 B
C
#ifndef FONT_DESC_H
|
|
#define FONT_DESC_H
|
|
|
|
#include <inttypes.h>
|
|
|
|
struct fontDesc_t {
|
|
uint16_t totalSize;
|
|
uint8_t widthInPixel;
|
|
uint8_t heightInPixel;
|
|
uint8_t bitsPerPixel;
|
|
uint8_t firstChar;
|
|
uint8_t lastChar;
|
|
|
|
unsigned char const *const pData;
|
|
};
|
|
|
|
#endif
|