summaryrefslogtreecommitdiff
path: root/firmware/export/lcd.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/lcd.h')
-rw-r--r--firmware/export/lcd.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h
index ff955e170b..0818f9d92e 100644
--- a/firmware/export/lcd.h
+++ b/firmware/export/lcd.h
@@ -87,7 +87,9 @@ enum
87extern void lcd_define_hw_pattern (int which,char *pattern,int length); 87extern void lcd_define_hw_pattern (int which,char *pattern,int length);
88extern void lcd_define_pattern (int which,char *pattern); 88extern void lcd_define_pattern (int which,char *pattern);
89extern void lcd_double_height (bool on); 89extern void lcd_double_height (bool on);
90extern void lcd_jump_scroll (int mode); /* 0=off, 1=once, 2=always */ 90#define JUMP_SCROLL_ALWAYS 5
91extern void lcd_jump_scroll (int mode); /* 0=off, 1=once, ..., ALWAYS */
92extern void lcd_jump_scroll_delay( int ms );
91unsigned char lcd_get_locked_pattern(void); 93unsigned char lcd_get_locked_pattern(void);
92void lcd_unlock_pattern(unsigned char pat); 94void lcd_unlock_pattern(unsigned char pat);
93void lcd_allow_bidirectional_scrolling(bool on); 95void lcd_allow_bidirectional_scrolling(bool on);