Browse Source
Allow cold Filament Load/Unload with M302 P1 (#20262)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
vanilla_fb_2.0.x
pseudex
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
3 deletions
-
Marlin/src/feature/pause.cpp
|
|
@ -142,10 +142,10 @@ static bool ensure_safe_temperature(const bool wait=true, const PauseMode mode=P |
|
|
|
#endif |
|
|
|
UNUSED(mode); |
|
|
|
|
|
|
|
if (wait) |
|
|
|
return thermalManager.wait_for_hotend(active_extruder); |
|
|
|
if (wait) 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) |
|
|
|
idle(); |
|
|
|
wait_for_heatup = false; |
|
|
|