|
@@ -39,6 +39,7 @@
|
39
|
39
|
bool lcd_hasstatus();
|
40
|
40
|
void lcd_setstatus(const char* message, const bool persist=false);
|
41
|
41
|
void lcd_setstatuspgm(const char* message, const uint8_t level=0);
|
|
42
|
+ void status_printf(uint8_t level, const char *Status, ...);
|
42
|
43
|
void lcd_setalertstatuspgm(const char* message);
|
43
|
44
|
void lcd_reset_alert_level();
|
44
|
45
|
void lcd_kill_screen();
|
|
@@ -153,6 +154,7 @@
|
153
|
154
|
inline bool lcd_hasstatus() { return false; }
|
154
|
155
|
inline void lcd_setstatus(const char* const message, const bool persist=false) { UNUSED(message); UNUSED(persist); }
|
155
|
156
|
inline void lcd_setstatuspgm(const char* const message, const uint8_t level=0) { UNUSED(message); UNUSED(level); }
|
|
157
|
+ inline void status_printf(uint8_t level, const char *status, ...) { UNUSED(level); UNUSED(status); }
|
156
|
158
|
inline void lcd_buttons_update() {}
|
157
|
159
|
inline void lcd_reset_alert_level() {}
|
158
|
160
|
inline bool lcd_detected() { return true; }
|