From 0b5afa30920a5495ebc21c72d63b45722e896ad0 Mon Sep 17 00:00:00 2001 From: gudnimg Date: Sun, 17 Nov 2024 17:03:00 +0000 Subject: [PATCH] Unload the filament at parked position We don't want to unload while the nozzle is still smudged against the bed. --- Firmware/first_lay_cal.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Firmware/first_lay_cal.cpp b/Firmware/first_lay_cal.cpp index d1ca5ee91..ff755ee50 100644 --- a/Firmware/first_lay_cal.cpp +++ b/Firmware/first_lay_cal.cpp @@ -257,10 +257,10 @@ void lay1cal_finish() MSG_M107, // Turn off printer fan cmd_cal_finish_1, // Retract cmd_cal_finish_2, // Turn off bed heater - MSG_M702, // Unload filament (MMU only) - cmd_cal_finish_3, // Turn off hotend heater cmd_cal_finish_4, // Lift Z cmd_cal_finish_5, // Go to parking position + MSG_M702, // Unload filament (MMU only) + cmd_cal_finish_3, // Turn off hotend heater MSG_M84 // Disable stepper motors };