🧑‍💻 Clarify parking_extruder_unpark_after_homing

This commit is contained in:
Scott Lahteine 2025-05-04 13:55:50 -05:00
parent cbe8a6867c
commit 9bbbcd439b

View file

@ -300,7 +300,8 @@ void GcodeSuite::G28() {
#endif #endif
// PARKING_EXTRUDER homing requires different handling of movement / solenoid activation, depending on the side of homing // PARKING_EXTRUDER homing requires different handling of movement / solenoid activation, depending on the side of homing
#if ENABLED(PARKING_EXTRUDER) #if ENABLED(PARKING_EXTRUDER)
const bool pe_final_change_must_unpark = parking_extruder_unpark_after_homing(old_tool_index, X_HOME_DIR + 1 == old_tool_index * 2); const bool homed_towards_tool = old_tool_index == TERN(X_HOME_TO_MIN, 0, 1),
pe_final_change_must_unpark = parking_extruder_unpark_after_homing(old_tool_index, homed_towards_tool);
#endif #endif
tool_change(0, true); tool_change(0, true);
#endif #endif