From 831016b09f753000edb69473cd013e1a79b2fdd1 Mon Sep 17 00:00:00 2001 From: AnHardt Date: Wed, 1 Apr 2015 10:17:17 +0200 Subject: [PATCH] Added new - changed entries from Fix up LCD_PROGRESS_BAR for when no LCD is defined. Fix for #1770. --- Marlin/ultralcd.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Marlin/ultralcd.h b/Marlin/ultralcd.h index c2529d1d1..a89c26206 100644 --- a/Marlin/ultralcd.h +++ b/Marlin/ultralcd.h @@ -99,7 +99,8 @@ #else //no LCD FORCE_INLINE void lcd_update() {} FORCE_INLINE void lcd_init() {} - FORCE_INLINE void lcd_setstatus(const char* message) {} + FORCE_INLINE void lcd_setstatus(const char* message, const bool persist=false) {} + FORCE_INLINE void lcd_setstatuspgm(const char* message, const uint8_t level=0) {} FORCE_INLINE void lcd_buttons_update() {} FORCE_INLINE void lcd_reset_alert_level() {} FORCE_INLINE void lcd_buzz(long duration,uint16_t freq) {}