Fix compile error with LCD_I2C_VIKI

master
Scott Lahteine 8 years ago
parent c1e1f63ffa
commit 3fb43c11fc

@ -3154,6 +3154,8 @@ void lcd_reset_alert_level() { lcd_status_message_level = 0; }
#if (ENABLED(LCD_I2C_TYPE_MCP23017) || ENABLED(LCD_I2C_TYPE_MCP23008)) && ENABLED(DETECT_DEVICE)
bool lcd_detected() { return lcd.LcdDetected() == 1; }
#else
bool lcd_detected() { return true; }
#endif
#endif // ULTIPANEL

@ -43,12 +43,7 @@
void lcd_reset_alert_level();
void lcd_kill_screen();
void kill_screen(const char* lcd_msg);
#if (ENABLED(LCD_I2C_TYPE_MCP23017) || ENABLED(LCD_I2C_TYPE_MCP23008)) && ENABLED(DETECT_DEVICE)
bool lcd_detected();
#else
inline bool lcd_detected() { return true; }
#endif
bool lcd_detected(void);
#if HAS_BUZZER
void lcd_buzz(long duration, uint16_t freq);

Loading…
Cancel
Save