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 62e82ca6ac..5b96863536 100644
--- a/firmware/export/lcd-remote.h
+++ b/firmware/export/lcd-remote.h
@@ -178,6 +178,7 @@ extern void lcd_remote_bitmap_part(const fb_remote_data *src, int src_x,
178extern void lcd_remote_bitmap(const fb_remote_data *src, int x, int y, 178extern void lcd_remote_bitmap(const fb_remote_data *src, int x, int y,
179 int width, int height); 179 int width, int height);
180extern void lcd_remote_putsxy(int x, int y, const unsigned char *str); 180extern void lcd_remote_putsxy(int x, int y, const unsigned char *str);
181extern void lcd_remote_putsxyf(int x, int y, const unsigned char *fmt, ...);
181 182
182extern void lcd_remote_bidir_scroll(int threshold); 183extern void lcd_remote_bidir_scroll(int threshold);
183extern void lcd_remote_scroll_step(int pixels); 184extern void lcd_remote_scroll_step(int pixels);
diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h
index 35720900fe..1cbb286ad1 100644
--- a/firmware/export/lcd.h
+++ b/firmware/export/lcd.h
@@ -191,6 +191,7 @@ extern void lcd_update_viewport(void);
191extern void lcd_clear_viewport(void); 191extern void lcd_clear_viewport(void);
192extern void lcd_clear_display(void); 192extern void lcd_clear_display(void);
193extern void lcd_putsxy(int x, int y, const unsigned char *string); 193extern void lcd_putsxy(int x, int y, const unsigned char *string);
194extern void lcd_putsxyf(int x, int y, const unsigned char *fmt, ...);
194extern void lcd_puts(int x, int y, const unsigned char *string); 195extern void lcd_puts(int x, int y, const unsigned char *string);
195extern void lcd_putsf(int x, int y, const unsigned char *fmt, ...); 196extern void lcd_putsf(int x, int y, const unsigned char *fmt, ...);
196extern void lcd_puts_style(int x, int y, const unsigned char *string, int style); 197extern void lcd_puts_style(int x, int y, const unsigned char *string, int style);