aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/corexy.py
diff options
context:
space:
mode:
Diffstat (limited to 'klippy/corexy.py')
-rw-r--r--klippy/corexy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/corexy.py b/klippy/corexy.py
index d459682a..8b92d118 100644
--- a/klippy/corexy.py
+++ b/klippy/corexy.py
@@ -32,7 +32,7 @@ class CoreXYKinematics:
def set_position(self, newpos):
pos = (newpos[0] + newpos[1], newpos[0] - newpos[1], newpos[2])
for i in StepList:
- self.steppers[i].mcu_stepper.set_position(pos[i])
+ self.steppers[i].set_position(pos[i])
def home(self, homing_state):
# Each axis is homed independently and in order
for axis in homing_state.get_axes():