|
@@ -46,6 +46,9 @@
|
46
|
46
|
void kill_screen(const char* lcd_msg);
|
47
|
47
|
bool lcd_detected(void);
|
48
|
48
|
|
|
49
|
+ extern uint8_t lcdDrawUpdate;
|
|
50
|
+ inline void lcd_refresh() { lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW; }
|
|
51
|
+
|
49
|
52
|
#if HAS_BUZZER
|
50
|
53
|
void lcd_buzz(long duration, uint16_t freq);
|
51
|
54
|
#endif
|
|
@@ -158,6 +161,7 @@
|
158
|
161
|
inline void lcd_buttons_update() {}
|
159
|
162
|
inline void lcd_reset_alert_level() {}
|
160
|
163
|
inline bool lcd_detected() { return true; }
|
|
164
|
+ inline void lcd_refresh() {}
|
161
|
165
|
|
162
|
166
|
#define LCD_MESSAGEPGM(x) NOOP
|
163
|
167
|
#define LCD_ALERTMESSAGEPGM(x) NOOP
|