X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fstm%2Fao_lcd_font.c;h=6c5ea5c2abcf6f07cfeb51439d4438cd5da15359;hb=338372b97d441c30d2a23df540163a66a7f8d8c0;hp=0d7d87c10b8dd38dd654abe907f3ee597daef835;hpb=9b5e98a3407b369803109bfc1409e4f8b6e848ba;p=fw%2Faltos diff --git a/src/stm/ao_lcd_font.c b/src/stm/ao_lcd_font.c index 0d7d87c1..6c5ea5c2 100644 --- a/src/stm/ao_lcd_font.c +++ b/src/stm/ao_lcd_font.c @@ -3,7 +3,8 @@ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; version 2 of the License. + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of @@ -16,9 +17,10 @@ */ #include +#include "ao_lcd_font.h" static const uint16_t ao_lcd_font[] = { -#include "ao_lcd_font.h" +#include "ao_lcd_font_bits.h" }; /* @@ -115,7 +117,7 @@ ao_lcd_font_text(void) ao_lcd_font_string(string); } -const struct ao_cmds ao_lcd_font_cmds[] = { +static const struct ao_cmds ao_lcd_font_cmds[] = { { ao_lcd_font_text, "t \0Write to LCD" }, { 0, NULL } }; @@ -125,4 +127,3 @@ ao_lcd_font_init(void) { ao_cmd_register(ao_lcd_font_cmds); } -