aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/kinematics/rotary_delta.py
diff options
context:
space:
mode:
Diffstat (limited to 'klippy/kinematics/rotary_delta.py')
-rw-r--r--klippy/kinematics/rotary_delta.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/klippy/kinematics/rotary_delta.py b/klippy/kinematics/rotary_delta.py
index 9e57a11e..f61ed34a 100644
--- a/klippy/kinematics/rotary_delta.py
+++ b/klippy/kinematics/rotary_delta.py
@@ -23,13 +23,10 @@ class RotaryDeltaKinematics:
self.rails = [rail_a, rail_b, rail_c]
config.get_printer().register_event_handler("stepper_enable:motor_off",
self._motor_off)
- # Setup stepper max halt velocity
+ # Read config
max_velocity, max_accel = toolhead.get_max_velocity()
self.max_z_velocity = config.getfloat('max_z_velocity', max_velocity,
above=0., maxval=max_velocity)
- for rail in self.rails:
- rail.set_max_jerk(9999999.9, 9999999.9)
- # Read config
shoulder_radius = config.getfloat('shoulder_radius', above=0.)
shoulder_height = config.getfloat('shoulder_height', above=0.)
a_upper_arm = stepper_configs[0].getfloat('upper_arm_length', above=0.)