diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-03-30 14:05:05 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-03-30 14:05:05 -0400 |
commit | 03ddd64b935e4d67760f049446ace109ce207987 (patch) | |
tree | 524e2bf6ed5639d000640ad2065510d210763458 | |
parent | 7fc9ba7d3a2bce4714fac698d0474e49b2e0e868 (diff) | |
download | kutter-03ddd64b935e4d67760f049446ace109ce207987.tar.gz kutter-03ddd64b935e4d67760f049446ace109ce207987.tar.xz kutter-03ddd64b935e4d67760f049446ace109ce207987.zip |
config: Decrease example max_z_velocity to 25mm/s
Change the example files for cartesian printers to have a 25mm/s
maximum Z velocity. It's common to use lead screws for the Z axis on
cartesians and it is unlikely one would want to drive them at 250mm/s.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | config/example.cfg | 2 | ||||
-rw-r--r-- | config/makergear-m2-2012.cfg | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/config/example.cfg b/config/example.cfg index 4fc05b0b..e3439f01 100644 --- a/config/example.cfg +++ b/config/example.cfg @@ -264,7 +264,7 @@ max_accel: 3000 # reduce the top speed of short zig-zag moves (and thus reduce # printer vibration from these moves). The default is half of # max_accel. -max_z_velocity: 250 +max_z_velocity: 25 # For cartesian printers this sets the maximum velocity (in mm/s) of # movement along the z axis. This setting can be used to restrict # the maximum speed of the z stepper motor on cartesian diff --git a/config/makergear-m2-2012.cfg b/config/makergear-m2-2012.cfg index bf5b315e..74b347d2 100644 --- a/config/makergear-m2-2012.cfg +++ b/config/makergear-m2-2012.cfg @@ -99,6 +99,6 @@ custom: kinematics: cartesian max_velocity: 500 max_accel: 3000 -max_z_velocity: 250 +max_z_velocity: 25 max_z_accel: 30 motor_off_time: 600 |