summaryrefslogtreecommitdiff
path: root/firmware/drivers/lcd.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/lcd.c')
-rw-r--r--firmware/drivers/lcd.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/firmware/drivers/lcd.c b/firmware/drivers/lcd.c
index 4bdecd41f5..03f667acfa 100644
--- a/firmware/drivers/lcd.c
+++ b/firmware/drivers/lcd.c
@@ -420,6 +420,12 @@ void lcd_puts(int x, int y, unsigned char *string)
lcd_write(false,lcd_ascii[*(unsigned char*)string++]);
}
+void lcd_putc(int x, int y, unsigned char ch)
+{
+ lcd_write(true,LCD_CURSOR(x,y));
+ lcd_write(false,lcd_ascii[ch]);
+}
+
void lcd_define_pattern (int which,char *pattern,int length)
{
int i;