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.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/firmware/drivers/lcd.h b/firmware/drivers/lcd.h
index 76e38375e4..32f636059c 100644
--- a/firmware/drivers/lcd.h
+++ b/firmware/drivers/lcd.h
@@ -117,11 +117,10 @@ extern void lcd_invertpixel(int x, int y);
117extern void lcd_roll(int pixels); 117extern void lcd_roll(int pixels);
118 118
119extern void lcd_setfont(int font); 119extern void lcd_setfont(int font);
120extern void lcd_getfontsize(int font, int *width, int *height); 120extern void lcd_putsxy(int x, int y, unsigned char *string);
121extern void lcd_putsxy(int x, int y, unsigned char *string, int font); 121extern int lcd_getstringsize(unsigned char *str, int *w, int *h);
122 122
123#endif /* CHARCELLS / BITMAP */ 123#endif /* CHARCELLS / BITMAP */
124 124
125extern int lcd_getstringsize(unsigned char *str, int font, int *w, int *h);
126 125
127#endif /* __LCD_H__ */ 126#endif /* __LCD_H__ */