diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-10-08 21:59:25 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-10-09 11:17:39 -0400 |
commit | f7a7223b30dafacf458d2568c0758dc5fd6ce578 (patch) | |
tree | d5da3058b3293a6e4f4038e82756884814b6f158 /config/example.cfg | |
parent | 36ae433b57e0783f7c98ec6d0b47a69896568e18 (diff) | |
download | kutter-f7a7223b30dafacf458d2568c0758dc5fd6ce578.tar.gz kutter-f7a7223b30dafacf458d2568c0758dc5fd6ce578.tar.xz kutter-f7a7223b30dafacf458d2568c0758dc5fd6ce578.zip |
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>
Diffstat (limited to 'config/example.cfg')
-rw-r--r-- | config/example.cfg | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/config/example.cfg b/config/example.cfg index 57dfb043..344c525d 100644 --- a/config/example.cfg +++ b/config/example.cfg @@ -49,14 +49,13 @@ position_max: 200 #homing_speed: 5.0 # Maximum velocity (in mm/s) of the stepper when homing. The default # is 5mm/s. -#second_homing_speed: 5.0 -# Maximum velocity (in mm/s) of the stepper when performing the second -# stage of homing (the move off the endstop and then back towards for the -# second trigger). This parameter is optional, and defaults to -# homing_speed/2.0 #homing_retract_dist: 5.0 # Distance to backoff (in mm) before homing a second time during -# homing. The default is 5mm. +# homing. Set this to zero to disable the second home. The default +# is 5mm. +#second_homing_speed: +# Velocity (in mm/s) of the stepper when performing the second home. +# The default is homing_speed/2. #homing_positive_dir: # If true, homing will cause the stepper to move in a positive # direction (away from zero); if false, home towards zero. The |