aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras/manual_stepper.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2024-04-10 10:38:48 -0400
committerKevin O'Connor <kevin@koconnor.net>2024-04-10 10:40:41 -0400
commit4cfa266e007d57b1a70773a228170c1bd7b2ad14 (patch)
treeb617fa95b7362f23ec977080b3eec6e9f04b5084 /klippy/extras/manual_stepper.py
parenta8b493a1aeaa605e1d6bffd309562f22356e8930 (diff)
downloadkutter-4cfa266e007d57b1a70773a228170c1bd7b2ad14.tar.gz
kutter-4cfa266e007d57b1a70773a228170c1bd7b2ad14.tar.xz
kutter-4cfa266e007d57b1a70773a228170c1bd7b2ad14.zip
manual_stepper: Revert "manual_stepper: Add basic status. (#6527)"
This reverts commit b029d0466841b90b54279500f70a92deacfd6c5a. The MCU_Stepper class does not have a is_motor_enabled() method, so the change above results in an internal exception. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/manual_stepper.py')
-rw-r--r--klippy/extras/manual_stepper.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/klippy/extras/manual_stepper.py b/klippy/extras/manual_stepper.py
index e18989d3..40db4a50 100644
--- a/klippy/extras/manual_stepper.py
+++ b/klippy/extras/manual_stepper.py
@@ -104,11 +104,6 @@ class ManualStepper:
self.do_move(movepos, speed, accel, sync)
elif gcmd.get_int('SYNC', 0):
self.sync_print_time()
-
- def get_status(self, eventtime):
- return {'position': self.rail.get_commanded_position(),
- 'enabled': self.steppers[0].is_motor_enabled()}
-
# Toolhead wrappers to support homing
def flush_step_generation(self):
self.sync_print_time()