|
|
@ -142,10 +142,10 @@ static bool ensure_safe_temperature(const bool wait=true, const PauseMode mode=P
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
UNUSED(mode);
|
|
|
|
UNUSED(mode);
|
|
|
|
|
|
|
|
|
|
|
|
if (wait)
|
|
|
|
if (wait) return thermalManager.wait_for_hotend(active_extruder);
|
|
|
|
return thermalManager.wait_for_hotend(active_extruder);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wait_for_heatup = true; // Allow interruption by Emergency Parser M108
|
|
|
|
// Allow interruption by Emergency Parser M108
|
|
|
|
|
|
|
|
wait_for_heatup = TERN1(PREVENT_COLD_EXTRUSION, !thermalManager.allow_cold_extrude);
|
|
|
|
while (wait_for_heatup && ABS(thermalManager.degHotend(active_extruder) - thermalManager.degTargetHotend(active_extruder)) > TEMP_WINDOW)
|
|
|
|
while (wait_for_heatup && ABS(thermalManager.degHotend(active_extruder) - thermalManager.degTargetHotend(active_extruder)) > TEMP_WINDOW)
|
|
|
|
idle();
|
|
|
|
idle();
|
|
|
|
wait_for_heatup = false;
|
|
|
|
wait_for_heatup = false;
|
|
|
|