Don't run M600
on filament runout if the nozzle is cold
This commit is contained in:
parent
61bf8478a2
commit
a718f5bdf3
@ -336,7 +336,10 @@ void disable_all_steppers() {
|
|||||||
void manage_inactivity(bool ignore_stepper_queue/*=false*/) {
|
void manage_inactivity(bool ignore_stepper_queue/*=false*/) {
|
||||||
|
|
||||||
#if ENABLED(FILAMENT_RUNOUT_SENSOR)
|
#if ENABLED(FILAMENT_RUNOUT_SENSOR)
|
||||||
if ((IS_SD_PRINTING || print_job_timer.isRunning()) && (READ(FIL_RUNOUT_PIN) == FIL_RUNOUT_INVERTING))
|
if ((IS_SD_PRINTING || print_job_timer.isRunning())
|
||||||
|
&& READ(FIL_RUNOUT_PIN) == FIL_RUNOUT_INVERTING
|
||||||
|
&& thermalManager.targetHotEnoughToExtrude(active_extruder)
|
||||||
|
)
|
||||||
handle_filament_runout();
|
handle_filament_runout();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user