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.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/firmware/drivers/lcd.c b/firmware/drivers/lcd.c
index 6df3f28ffd..66b1c682e7 100644
--- a/firmware/drivers/lcd.c
+++ b/firmware/drivers/lcd.c
@@ -325,6 +325,7 @@ static const unsigned char lcd_ascii[] = {
325}; 325};
326#endif /* HAVE_NEW_CHARCELL_LCD */ 326#endif /* HAVE_NEW_CHARCELL_LCD */
327 327
328#ifndef SIMULATOR
328void lcd_clear_display(void) 329void lcd_clear_display(void)
329{ 330{
330 int i; 331 int i;
@@ -347,8 +348,14 @@ void lcd_define_pattern (int which,char *pattern,int length)
347 for (i=0;i<length;i++) 348 for (i=0;i<length;i++)
348 lcd_write(FALSE,pattern[i]); 349 lcd_write(FALSE,pattern[i]);
349} 350}
351#endif
350 352
351#elif HAVE_LCD_BITMAP /* not CHARCELLS */ 353#endif
354#if defined(HAVE_LCD_BITMAP) || defined(SIMULATOR) /* not CHARCELLS */
355
356#if defined(HAVE_LCD_CHARCELLS) && defined(SIMULATOR)
357#include <chardef.h>
358#endif
352 359
353/* 360/*
354 * All bitmaps have this format: 361 * All bitmaps have this format:
@@ -681,6 +688,10 @@ void lcd_fontsize(char font, char *width, char *height)
681 } 688 }
682} 689}
683 690
691#if defined(HAVE_LCD_CHARCELLS) && defined(SIMULATOR)
692#include <charundef.h>
693#endif
694
684#else 695#else
685/* no LCD defined, no code to use */ 696/* no LCD defined, no code to use */
686#endif 697#endif