aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/kinematics/corexy.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2019-10-29 11:52:56 -0400
committerKevin O'Connor <kevin@koconnor.net>2019-11-06 15:51:51 -0500
commitbefd263260a42221a5ef0eba3a461c1e63421326 (patch)
treebed3343ce3e3ae858b84b79e485069e42fac1b72 /klippy/kinematics/corexy.py
parentef53ded6bcad496d4506a9222c4db4ccb2c0418c (diff)
downloadkutter-befd263260a42221a5ef0eba3a461c1e63421326.tar.gz
kutter-befd263260a42221a5ef0eba3a461c1e63421326.tar.xz
kutter-befd263260a42221a5ef0eba3a461c1e63421326.zip
toolhead: Remove kinematic move() call
Now that all kinematics use the trapq system, there is no need to call into the kinematics on each g-code move. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/kinematics/corexy.py')
-rw-r--r--klippy/kinematics/corexy.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/klippy/kinematics/corexy.py b/klippy/kinematics/corexy.py
index 16915f3d..b8ba08e2 100644
--- a/klippy/kinematics/corexy.py
+++ b/klippy/kinematics/corexy.py
@@ -91,8 +91,6 @@ class CoreXYKinematics:
z_ratio = move.move_d / abs(move.axes_d[2])
move.limit_speed(
self.max_z_velocity * z_ratio, self.max_z_accel * z_ratio)
- def move(self, print_time, move):
- pass
def get_status(self):
return {'homed_axes': "".join([a
for a, (l, h) in zip("XYZ", self.limits) if l <= h])