cartesian: Use homing_speed for homing retract speed

Commit b0d859f2 introduced a second_homing_speed parameter, and it
also changed the retract speed.  Revert the retract speed change (use
homing_speed when the head retracts).

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor 2018-10-08 21:59:25 -04:00
parent 36ae433b57
commit f7a7223b30
4 changed files with 8 additions and 9 deletions

View file

@ -79,7 +79,7 @@ class CartKinematics:
homing_state.home(coord, homepos, rail.get_endstops(), homing_speed)
# Retract
coord[axis] = rpos
homing_state.retract(coord, second_homing_speed)
homing_state.retract(coord, homing_speed)
# Home again
coord[axis] = r2pos
homing_state.home(coord, homepos, rail.get_endstops(),