diff options
author | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-08-29 10:55:34 -0400 |
---|---|---|
committer | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-08-29 10:55:34 -0400 |
commit | facf818bfa54d1fc553cf06a0f22012ea033ace0 (patch) | |
tree | 254143d4d025f5b2d37af59e95470b48ba9421c4 /lcd.h | |
parent | b127640ef5f09b10a648701c52f950f3fe569ce6 (diff) |
add some menu variables as globals, to remove FIXMEs
Diffstat (limited to 'lcd.h')
-rw-r--r-- | lcd.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -2,7 +2,10 @@ #include <glib.h> -void LCD_display_extended_message(char *response, gboolean show_change_message); +#define LCD_cols 40 +#define LCD_rows 4 /* 4x40 LCD */ + +void LCD_display_extended_message(char *response, gboolean show_change_message, gboolean is_error_screen); void LCD_clear(); void LCD_write(int row, int col, char *LCD_string); void LCD_initialize(void); |