From 4e3152dc1df93e581e376487aa69dcce20f3bdde Mon Sep 17 00:00:00 2001 From: Yuri D'Elia Date: Mon, 23 Jan 2023 16:52:27 +0100 Subject: [PATCH] wizard: Disable TM warnings during calibration During calibration model warnings are possible/normal. This is apparently leading some into thinking the hotend might be faulty and abort the calibration with a hard reset. Disable warnings/beeps during calibration. Rely on the error threshold only. --- Firmware/ultralcd.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Firmware/ultralcd.cpp b/Firmware/ultralcd.cpp index 7bdec003..e5abd8a2 100755 --- a/Firmware/ultralcd.cpp +++ b/Firmware/ultralcd.cpp @@ -1050,6 +1050,7 @@ void lcd_commands() [[fallthrough]]; case 3: + temp_model_set_warn_beep(false); enquecommand_P(PSTR("M310 A F1")); lcd_commands_step = 2; break; @@ -1063,6 +1064,7 @@ void lcd_commands() case 1: lcd_commands_step = 0; lcd_commands_type = LcdCommands::Idle; + temp_model_set_warn_beep(true); bool res = temp_model_autotune_result(); if (eeprom_read_byte((uint8_t*)EEPROM_WIZARD_ACTIVE)) { // resume the wizard