mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-15 18:58:03 -06:00
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:
parent
36ae433b57
commit
f7a7223b30
4 changed files with 8 additions and 9 deletions
|
@ -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(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue