summaryrefslogtreecommitdiff
path: root/firmware/chartables.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/chartables.c')
-rw-r--r--firmware/chartables.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/firmware/chartables.c b/firmware/chartables.c
index f4d64d164b..0ecd79f9d5 100644
--- a/firmware/chartables.c
+++ b/firmware/chartables.c
@@ -1,6 +1,10 @@
1// 1/*
2// Character generation tables 2 * Character generation tables
3// 3 */
4
5#include "config.h"
6
7#ifdef HAVE_LCD_BITMAP
4 8
5const unsigned char char_gen_6x8[][5][1] = 9const unsigned char char_gen_6x8[][5][1] =
6{ 10{
@@ -301,3 +305,5 @@ const unsigned char char_gen_12x16[][11][2] =
301 0x10,0x00,0x18,0x00,0x0c,0x00,0x04,0x00,0x0c,0x00,0x18,0x00,0x10,0x00,0x18,0x00,0x0c,0x00,0x04,0x00,0x00,0x00, 305 0x10,0x00,0x18,0x00,0x0c,0x00,0x04,0x00,0x0c,0x00,0x18,0x00,0x10,0x00,0x18,0x00,0x0c,0x00,0x04,0x00,0x00,0x00,
302 0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0x00,0x00, 306 0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0x00,0x00,
303}; 307};
308
309#endif /* HAVE_LCD_BITMAP */