altos: Add program flash function
[fw/altos] / src / stm / ao_lcd_font.c
index f6074587e55e785a042ca55e89fa24b6a5a4e257..0d7d87c10b8dd38dd654abe907f3ee597daef835 100644 (file)
@@ -98,4 +98,31 @@ ao_lcd_font_string(char *s) {
        }
        while (pos < 6)
                ao_lcd_font_char(pos++, ' ', 0);
+       stm_lcd.sr = (1 << STM_LCD_SR_UDR);
 }
+
+static void
+ao_lcd_font_text(void)
+{
+       char    string[20];
+       uint8_t c = 0;
+       ao_cmd_white();
+       while (ao_cmd_lex_c != '\n' && c < sizeof (string) - 1) {
+               string[c++] = ao_cmd_lex_c;
+               ao_cmd_lex();
+       }
+       string[c++] = '\0';
+       ao_lcd_font_string(string);
+}
+
+const struct ao_cmds ao_lcd_font_cmds[] = {
+       { ao_lcd_font_text,     "t <string>\0Write <string> to LCD" },
+       { 0, NULL }
+};
+
+void
+ao_lcd_font_init(void)
+{
+       ao_cmd_register(ao_lcd_font_cmds);
+}
+