Skip to content

Commit

Permalink
wizard: Disable TM warnings during calibration
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
wavexx committed Jan 23, 2023
1 parent 39f9979 commit c9f3a4c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Firmware/ultralcd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -995,6 +995,7 @@ void lcd_commands()
[[fallthrough]];

case 3:
temp_model_set_warn_beep(false);
enquecommand_P(PSTR("M310 A F1"));
lcd_commands_step = 2;
break;
Expand All @@ -1008,6 +1009,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
Expand Down

0 comments on commit c9f3a4c

Please sign in to comment.