diff options
author | Keith Packard <keithp@keithp.com> | 2012-03-22 20:02:30 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-03-28 21:37:03 -0700 |
commit | d236a5c7cd6e9b1d7192e801d63b4bd348cc2f12 (patch) | |
tree | 6a17f52df639b45620ccf48a4411f8f88c94d2eb /src/stm-demo | |
parent | 6da2f5846f2d28ea1f09f60ef2cc3f68113ac62a (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-demo')
-rw-r--r-- | src/stm-demo/ao_demo.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/stm-demo/ao_demo.c b/src/stm-demo/ao_demo.c index 24566f9b..a672964b 100644 --- a/src/stm-demo/ao_demo.c +++ b/src/stm-demo/ao_demo.c @@ -49,6 +49,7 @@ main(void) ao_cmd_init(); // ao_led_init(LEDS_AVAILABLE); ao_lcd_stm_init(); + ao_lcd_font_init(); // ao_add_task(&demo_task, ao_demo, "demo"); ao_start_scheduler(); |