From e9f1e50be49edc6d01ff006e0a1f5291672ec808 Mon Sep 17 00:00:00 2001 From: Damien Date: Tue, 22 Oct 2013 23:09:25 +0100 Subject: Board running boot.py, working REPL, soft reboot. --- stm/lcd.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'stm/lcd.c') diff --git a/stm/lcd.c b/stm/lcd.c index 3b65ed85f..ecc657580 100644 --- a/stm/lcd.c +++ b/stm/lcd.c @@ -1,3 +1,4 @@ +#include #include #include "misc.h" @@ -138,6 +139,10 @@ void lcd_init() { lcd_next_line = 0; } +void lcd_print_str(const char *str) { + lcd_print_strn(str, strlen(str)); +} + void lcd_print_strn(const char *str, unsigned int len) { int redraw_min = lcd_line * LCD_BUF_W + lcd_column; int redraw_max = redraw_min; -- cgit v1.2.3