summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/lcd-remote.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/firmware/export/lcd-remote.h b/firmware/export/lcd-remote.h
index 9d5808b157..e4fffedac0 100644
--- a/firmware/export/lcd-remote.h
+++ b/firmware/export/lcd-remote.h
@@ -132,8 +132,13 @@ extern void lcd_remote_setfont(int font);
132extern int lcd_remote_getstringsize(const unsigned char *str, int *w, int *h); 132extern int lcd_remote_getstringsize(const unsigned char *str, int *w, int *h);
133 133
134/* low level drawing function pointer arrays */ 134/* low level drawing function pointer arrays */
135#if LCD_REMOTE_DEPTH > 1
136extern lcd_remote_pixelfunc_type* const *lcd_remote_pixelfuncs;
137extern lcd_remote_blockfunc_type* const *lcd_remote_blockfuncs;
138#else
135extern lcd_remote_pixelfunc_type* const lcd_remote_pixelfuncs[8]; 139extern lcd_remote_pixelfunc_type* const lcd_remote_pixelfuncs[8];
136extern lcd_remote_blockfunc_type* const lcd_remote_blockfuncs[8]; 140extern lcd_remote_blockfunc_type* const lcd_remote_blockfuncs[8];
141#endif
137 142
138extern void lcd_remote_drawpixel(int x, int y); 143extern void lcd_remote_drawpixel(int x, int y);
139extern void lcd_remote_drawline(int x1, int y1, int x2, int y2); 144extern void lcd_remote_drawline(int x1, int y1, int x2, int y2);