summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/lcd-remote.h1
-rw-r--r--firmware/export/lcd.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/firmware/export/lcd-remote.h b/firmware/export/lcd-remote.h
index 0f5f7ed6b7..1bb19a5cfa 100644
--- a/firmware/export/lcd-remote.h
+++ b/firmware/export/lcd-remote.h
@@ -132,6 +132,7 @@ void lcd_remote_init(void);
132void lcd_remote_write_command(int cmd); 132void lcd_remote_write_command(int cmd);
133void lcd_remote_write_command_ex(int cmd, int data); 133void lcd_remote_write_command_ex(int cmd, int data);
134void lcd_remote_write_data(const fb_remote_data *data, int count); 134void lcd_remote_write_data(const fb_remote_data *data, int count);
135extern void lcd_remote_set_framebuffer(fb_remote_data *fb);
135 136
136extern void lcd_remote_bitmap_part(const fb_remote_data *src, int src_x, 137extern void lcd_remote_bitmap_part(const fb_remote_data *src, int src_x,
137 int src_y, int stride, int x, int y, 138 int src_y, int stride, int x, int y,
diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h
index 052b368d9b..7e0e979821 100644
--- a/firmware/export/lcd.h
+++ b/firmware/export/lcd.h
@@ -529,6 +529,7 @@ extern void lcd_bitmap_part(const fb_data *src, int src_x, int src_y,
529 int stride, int x, int y, int width, int height); 529 int stride, int x, int y, int width, int height);
530extern void lcd_bitmap(const fb_data *src, int x, int y, int width, 530extern void lcd_bitmap(const fb_data *src, int x, int y, int width,
531 int height); 531 int height);
532extern void lcd_set_framebuffer(fb_data *fb);
532 533
533extern void lcd_scroll_step(int pixels); 534extern void lcd_scroll_step(int pixels);
534 535