mirror of
https://github.com/stasenso/rp_pico_test.git
synced 2026-06-26 21:42:44 +03:00
12 lines
225 B
C
12 lines
225 B
C
#ifndef FONT_DATA_H
|
|
#define FONT_DATA_H
|
|
|
|
#include <stdint.h>
|
|
|
|
extern const uint8_t font_width;
|
|
extern const uint8_t font_height;
|
|
extern const uint16_t font_char_count;
|
|
extern const uint8_t font_data[];
|
|
|
|
#endif // FONT_DATA_H
|