🩹 Fix LCD_BACKLIGHT_TIMEOUT compile (#24463)

This commit is contained in:
Jason Smith
2022-07-07 21:43:56 -07:00
committed by Scott Lahteine
parent d9ecbdcdbb
commit 79a332b57e
5 changed files with 13 additions and 12 deletions

View File

@ -886,7 +886,7 @@ private:
static void M250_report(const bool forReplay=true);
#endif
#if HAS_DISPLAY_SLEEP
#if HAS_GCODE_M255
static void M255();
static void M255_report(const bool forReplay=true);
#endif

View File

@ -36,7 +36,7 @@ void GcodeSuite::M255() {
const int m = parser.value_int();
ui.sleep_timeout_minutes = constrain(m, SLEEP_TIMEOUT_MIN, SLEEP_TIMEOUT_MAX);
#else
const int s = parser.value_int() * 60;
const unsigned int s = parser.value_ushort() * 60;
ui.lcd_backlight_timeout = constrain(s, LCD_BKL_TIMEOUT_MIN, LCD_BKL_TIMEOUT_MAX);
#endif
}