summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/lcd-remote.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/firmware/export/lcd-remote.h b/firmware/export/lcd-remote.h
index cdd48e5fa3..b046c0736d 100644
--- a/firmware/export/lcd-remote.h
+++ b/firmware/export/lcd-remote.h
@@ -56,9 +56,11 @@ typedef unsigned short fb_remote_data;
56typedef unsigned long fb_remote_data; 56typedef unsigned long fb_remote_data;
57#endif 57#endif
58 58
59#ifndef LCD_REMOTE_FBWIDTH 59/* common functions */
60#define LCD_REMOTE_FBWIDTH LCD_REMOTE_WIDTH 60void lcd_remote_init(void);
61#endif 61void lcd_remote_write_command(int cmd);
62void lcd_remote_write_command_ex(int cmd, int data);
63void lcd_remote_write_data(const fb_remote_data *data, int count);
62 64
63/* Low-level drawing function types */ 65/* Low-level drawing function types */
64typedef void lcd_remote_pixelfunc_type(int x, int y); 66typedef void lcd_remote_pixelfunc_type(int x, int y);