summaryrefslogtreecommitdiff
path: root/src/stm/ao_lcd_stm.c
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2012-03-22 20:02:30 -0700
committerKeith Packard <keithp@keithp.com>2012-03-28 21:37:03 -0700
commitd236a5c7cd6e9b1d7192e801d63b4bd348cc2f12 (patch)
tree6a17f52df639b45620ccf48a4411f8f88c94d2eb /src/stm/ao_lcd_stm.c
parent6da2f5846f2d28ea1f09f60ef2cc3f68113ac62a (diff)
Move LCD string output code to ao_lcd_font.c
It's all very specific to the 14-segment display, so stick it there. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/stm/ao_lcd_stm.c')
-rw-r--r--src/stm/ao_lcd_stm.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/stm/ao_lcd_stm.c b/src/stm/ao_lcd_stm.c
index 2d2fa9b3..f68cf165 100644
--- a/src/stm/ao_lcd_stm.c
+++ b/src/stm/ao_lcd_stm.c
@@ -268,25 +268,10 @@ ao_lcd_stm_clear(void)
stm_lcd.sr = (1 << STM_LCD_SR_UDR);
}
-static void
-ao_lcd_stm_text(void)
-{
- char string[7];
- uint8_t c = 0;
- ao_cmd_white();
- while (ao_cmd_lex_c != '\n' && c < sizeof (string)) {
- string[c++] = ao_cmd_lex_c;
- ao_cmd_lex();
- }
- string[c++] = '\0';
- ao_lcd_font_string(string);
- stm_lcd.sr = (1 << STM_LCD_SR_UDR);
-}
const struct ao_cmds ao_lcd_stm_cmds[] = {
{ ao_lcd_stm_seg_set, "s <com> <seg> <value>\0Set LCD segment" },
{ ao_lcd_stm_clear, "C\0Clear LCD" },
- { ao_lcd_stm_text, "t <string>\0Write <string> to LCD" },
{ 0, NULL },
};