|
@@ -1018,6 +1018,7 @@ void lcd_commands()
|
|
|
lcd_commands_step = 3;
|
|
|
}
|
|
|
if (lcd_commands_step == 3 && !blocks_queued()) { //PID calibration
|
|
|
+ pid_tuning_finished = false; // ensure we don't move to the next step early
|
|
|
sprintf_P(cmd1, PSTR("M303 E0 S%3u"), pid_temp);
|
|
|
// setting the correct target temperature (for visualization) is done in PID_autotune
|
|
|
enquecommand(cmd1);
|
|
@@ -1025,7 +1026,6 @@ void lcd_commands()
|
|
|
lcd_commands_step = 2;
|
|
|
}
|
|
|
if (lcd_commands_step == 2 && pid_tuning_finished) { //saving to eeprom
|
|
|
- pid_tuning_finished = false;
|
|
|
custom_message_state = 0;
|
|
|
lcd_setstatuspgm(_i("PID cal. finished"));////MSG_PID_FINISHED c=20
|
|
|
setAllTargetHotends(0); // reset all hotends temperature including the number displayed on the main screen
|