🩹 Fix Nozzle Cleaning wait for pre-set temp
Some checks failed
CI - Build Tests / Build Test (push) Waiting to run
CI - Unit Tests / Unit Test (push) Waiting to run
CI - Validate Pins Files / Validate Pins Files (push) Has been cancelled

Fixes #27882
This commit is contained in:
Scott Lahteine 2025-06-01 20:47:35 -05:00
parent 8c6e9526b0
commit 9f6cafbae3

View file

@ -189,12 +189,12 @@ Nozzle nozzle;
#if ENABLED(NOZZLE_CLEAN_HEATUP)
SERIAL_ECHOLNPGM("Nozzle too Cold - Heating");
thermalManager.setTargetHotend(NOZZLE_CLEAN_MIN_TEMP, arrPos);
thermalManager.wait_for_hotend(arrPos);
#else
SERIAL_ECHOLNPGM("Nozzle too cold - Skipping wipe");
return;
#endif
}
thermalManager.wait_for_hotend(arrPos);
#endif
#if HAS_SOFTWARE_ENDSTOPS