summaryrefslogtreecommitdiff
path: root/firmware/drivers/lcd.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/lcd.h')
-rw-r--r--firmware/drivers/lcd.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/firmware/drivers/lcd.h b/firmware/drivers/lcd.h
index 7e0495cd99..21da38188a 100644
--- a/firmware/drivers/lcd.h
+++ b/firmware/drivers/lcd.h
@@ -63,7 +63,12 @@ extern void lcd_backlight(bool on);
63extern void lcd_puts(int x, int y, char *string); 63extern void lcd_puts(int x, int y, char *string);
64extern void lcd_define_pattern (int which,char *pattern,int length); 64extern void lcd_define_pattern (int which,char *pattern,int length);
65 65
66#elif HAVE_LCD_BITMAP 66#endif
67#if defined(HAVE_LCD_BITMAP) || defined(SIMULATOR)
68
69#if defined(HAVE_LCD_CHARCELLS) && defined(SIMULATOR)
70#include <chardef.h>
71#endif
67 72
68#define LCD_WIDTH 112 /* Display width in pixels */ 73#define LCD_WIDTH 112 /* Display width in pixels */
69#define LCD_HEIGHT 64 /* Display height in pixels */ 74#define LCD_HEIGHT 64 /* Display height in pixels */
@@ -82,6 +87,10 @@ extern void lcd_clearpixel(int x, int y);
82 87
83void lcd_fontsize(char font, char *width, char *height); 88void lcd_fontsize(char font, char *width, char *height);
84 89
90#if defined(HAVE_LCD_CHARCELLS) && defined(SIMULATOR)
91#include <charundef.h>
92#endif
93
85#endif /* CHARCELLS / BITMAP */ 94#endif /* CHARCELLS / BITMAP */
86 95
87#endif /* __LCD_H__ */ 96#endif /* __LCD_H__ */