diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-10-03 19:28:20 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-10-03 22:03:52 -0400 |
commit | ce9523fb90fa537fd9a5eebd77852f6ac4c459de (patch) | |
tree | ee122d305cde6ffc0107eb275e512292c0e5fa95 /klippy/cartesian.py | |
parent | 06420b0ddf631aea1af72e3410363f8eec53a165 (diff) | |
download | kutter-ce9523fb90fa537fd9a5eebd77852f6ac4c459de.tar.gz kutter-ce9523fb90fa537fd9a5eebd77852f6ac4c459de.tar.xz kutter-ce9523fb90fa537fd9a5eebd77852f6ac4c459de.zip |
gcode: Report the raw MCU position from the M114 command
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/cartesian.py')
-rw-r--r-- | klippy/cartesian.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/cartesian.py b/klippy/cartesian.py index ede84af9..1786c63f 100644 --- a/klippy/cartesian.py +++ b/klippy/cartesian.py @@ -62,8 +62,8 @@ class CartKinematics: # Set final homed position coord[axis] = s.position_endstop + s.get_homed_offset() homing_state.set_homed_position(coord) - def query_endstops(self, print_time): - return homing.query_endstops(print_time, self.steppers) + def query_endstops(self, print_time, query_flags): + return homing.query_endstops(print_time, query_flags, self.steppers) def motor_off(self, print_time): self.limits = [(1.0, -1.0)] * 3 for stepper in self.steppers: |