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)
420 lcd_write(false,lcd_ascii[*(unsigned char*)string++]); 420 lcd_write(false,lcd_ascii[*(unsigned char*)string++]);
421} 421}
422 422
423void lcd_putc(int x, int y, unsigned char ch)
424{
425 lcd_write(true,LCD_CURSOR(x,y));
426 lcd_write(false,lcd_ascii[ch]);
427}
428
423void lcd_define_pattern (int which,char *pattern,int length) 429void lcd_define_pattern (int which,char *pattern,int length)
424{ 430{
425 int i; 431 int i;