upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/main/font.h
diff options
context:
space:
mode:
Diffstat (limited to 'main/font.h')
-rw-r--r--main/font.h11
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
9extern const uint8_t font8x8_basic[128][8];
10
11#endif