|
@@ -3062,6 +3062,8 @@ static void homeaxis(const AxisEnum axis) {
|
3062
|
3062
|
// Pretend current position is higher. Z will lower on the next move
|
3063
|
3063
|
current_position[Z_AXIS] += retract_zlift;
|
3064
|
3064
|
SYNC_PLAN_POSITION_KINEMATIC();
|
|
3065
|
+ // Lower Z
|
|
3066
|
+ prepare_move_to_destination();
|
3065
|
3067
|
}
|
3066
|
3068
|
|
3067
|
3069
|
feedrate_mm_s = retract_recover_feedrate_mm_s;
|
|
@@ -3069,7 +3071,7 @@ static void homeaxis(const AxisEnum axis) {
|
3069
|
3071
|
current_position[E_AXIS] -= move_e / volumetric_multiplier[active_extruder];
|
3070
|
3072
|
sync_plan_position_e();
|
3071
|
3073
|
|
3072
|
|
- // Lower Z and recover E
|
|
3074
|
+ // Recover E
|
3073
|
3075
|
prepare_move_to_destination();
|
3074
|
3076
|
}
|
3075
|
3077
|
|