mirror of
https://github.com/meshtastic/firmware.git
synced 2025-08-20 04:01:14 +00:00

* Added support for Polish fonts for E-Ink devices * Added support for Polish fonts for E-Ink devices FIX * Polilsh E-Ink/OLED font retouch, fixed Czech/Slovak font double space bug * Fixed platformio.ini uncommented flag
12 lines
295 B
C
12 lines
295 B
C
#ifndef OLEDDISPLAYFONTSPL_h
|
|
#define OLEDDISPLAYFONTSPL_h
|
|
|
|
#ifdef ARDUINO
|
|
#include <Arduino.h>
|
|
#elif __MBED__
|
|
#define PROGMEM
|
|
#endif
|
|
extern const uint8_t ArialMT_Plain_10_PL[] PROGMEM;
|
|
extern const uint8_t ArialMT_Plain_16_PL[] PROGMEM;
|
|
extern const uint8_t ArialMT_Plain_24_PL[] PROGMEM;
|
|
#endif |