diff options
| author | Your Name <you@example.com> | 2026-05-18 16:15:32 +0530 |
|---|---|---|
| committer | Your Name <you@example.com> | 2026-05-18 16:15:32 +0530 |
| commit | bf0f22dc7510eb6d098ae2205dae008f858d8195 (patch) | |
| tree | fc0496521338c9963ae482a1fbbb7d70599e8ca4 /main/font.h | |
| parent | 52f852f5b987750537b71e2a5f2363a48783a985 (diff) | |
track: add display abstraction layer and bitmap font
Diffstat (limited to 'main/font.h')
| -rw-r--r-- | main/font.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/main/font.h b/main/font.h new file mode 100644 index 0000000..8ef1955 --- /dev/null +++ b/main/font.h | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | #ifndef FONT_H | ||
| 2 | #define FONT_H | ||
| 3 | |||
| 4 | #include <stdint.h> | ||
| 5 | |||
| 6 | #define FONT_GLYPH_W 8 | ||
| 7 | #define FONT_GLYPH_H 8 | ||
| 8 | |||
| 9 | extern const uint8_t font8x8_basic[128][8]; | ||
| 10 | |||
| 11 | #endif | ||