LoRa_APRS_iGate/src/Display/Fonts/FontDesc.h

18 wiersze
273 B
C
Czysty Zwykły widok Historia

#ifndef FONT_DESC_H
#define FONT_DESC_H
#include <inttypes.h>
2023-09-23 13:44:43 +00: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 13:44:43 +00:00
unsigned char const *const pData;
};
#endif