mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-07 23:17:37 -06:00
stepper: Add mcu_to_commanded_position() method
Convert stepper.get_past_commanded_position() to the more general stepper.mcu_to_commanded_position(). Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
f2d10b5729
commit
809f1ccea6
2 changed files with 3 additions and 3 deletions
|
@ -119,8 +119,7 @@ class MCU_stepper:
|
|||
ffi_main, ffi_lib = chelper.get_ffi()
|
||||
pos = ffi_lib.stepcompress_find_past_position(self._stepqueue, clock)
|
||||
return int(pos)
|
||||
def get_past_commanded_position(self, print_time):
|
||||
mcu_pos = self.get_past_mcu_position(print_time)
|
||||
def mcu_to_commanded_position(self, mcu_pos):
|
||||
return mcu_pos * self._step_dist - self._mcu_position_offset
|
||||
def dump_steps(self, count, start_clock, end_clock):
|
||||
ffi_main, ffi_lib = chelper.get_ffi()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue