summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/drivers/lcd-charset-player.c4
-rw-r--r--firmware/export/lcd-charcell.h2
2 files changed, 4 insertions, 2 deletions
diff --git a/firmware/drivers/lcd-charset-player.c b/firmware/drivers/lcd-charset-player.c
index 5e97f06f43..db1cd04884 100644
--- a/firmware/drivers/lcd-charset-player.c
+++ b/firmware/drivers/lcd-charset-player.c
@@ -110,7 +110,7 @@ enum {
110#endif 110#endif
111}; 111};
112 112
113static const struct xchar_info xchar_info_newlcd[] = { 113const struct xchar_info xchar_info_newlcd[] = {
114 /* Standard ascii */ 114 /* Standard ascii */
115 { 0x20, 0, 0, 0x20 }, /* */ 115 { 0x20, 0, 0, 0x20 }, /* */
116 { 0x21, 0, 0, 0x21 }, /* ! */ 116 { 0x21, 0, 0, 0x21 }, /* ! */
@@ -610,7 +610,7 @@ static const struct xchar_info xchar_info_newlcd[] = {
610 { 0xfffd, 0, 0, 0x91 }, 610 { 0xfffd, 0, 0, 0x91 },
611}; 611};
612 612
613static const struct xchar_info xchar_info_oldlcd[] = { 613const struct xchar_info xchar_info_oldlcd[] = {
614 /* Standard ascii */ 614 /* Standard ascii */
615 { 0x20, 0, 0, 0x24 }, /* */ 615 { 0x20, 0, 0, 0x24 }, /* */
616 { 0x21, 0, 0, 0x25 }, /* ! */ 616 { 0x21, 0, 0, 0x25 }, /* ! */
diff --git a/firmware/export/lcd-charcell.h b/firmware/export/lcd-charcell.h
index 0684f9cd7b..8fc1dbba19 100644
--- a/firmware/export/lcd-charcell.h
+++ b/firmware/export/lcd-charcell.h
@@ -16,6 +16,8 @@
16 * KIND, either express or implied. 16 * KIND, either express or implied.
17 * 17 *
18 ****************************************************************************/ 18 ****************************************************************************/
19
20#include "config.h"
19 21
20/* target dependent - to be adjusted for other charcell targets */ 22/* target dependent - to be adjusted for other charcell targets */
21#define HW_PATTERN_SIZE 7 /* number of bytes per pattern */ 23#define HW_PATTERN_SIZE 7 /* number of bytes per pattern */