uvlo: Never wait for bed temperature when recovering
If the user accepted to resume, do not wait for bed temperature when recovering. This only adds a pointless delay when recovering a short pause and doesn't really improve the recovery quality after a long pause.
This commit is contained in:
parent
8f02262bbd
commit
63dab63f2e
@ -11226,7 +11226,7 @@ void recover_print(uint8_t automatic) {
|
||||
// Set the target bed and nozzle temperatures and wait.
|
||||
sprintf_P(cmd, PSTR("M104 S%d"), target_temperature[active_extruder]);
|
||||
enquecommand(cmd);
|
||||
sprintf_P(cmd, PSTR("M190 S%d"), target_temperature_bed);
|
||||
sprintf_P(cmd, PSTR("M140 S%d"), target_temperature_bed);
|
||||
enquecommand(cmd);
|
||||
sprintf_P(cmd, PSTR("M109 S%d"), target_temperature[active_extruder]);
|
||||
enquecommand(cmd);
|
||||
|
Loading…
Reference in New Issue
Block a user