From eecf3b6ea87e7d9d67e26e965ebf2fe58339484d Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Tue, 7 Nov 2017 12:12:28 -0500 Subject: stepper: Store pointers to step_const and step_delta in PrinterStepper Signed-off-by: Kevin O'Connor --- klippy/cartesian.py | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'klippy/cartesian.py') diff --git a/klippy/cartesian.py b/klippy/cartesian.py index edd7519b..685e0c7e 100644 --- a/klippy/cartesian.py +++ b/klippy/cartesian.py @@ -107,7 +107,7 @@ class CartKinematics: axis_d = move.axes_d[i] if not axis_d: continue - mcu_stepper = self.steppers[i].mcu_stepper + step_const = self.steppers[i].step_const move_time = print_time start_pos = move.start_pos[i] axis_r = abs(axis_d) / move.move_d @@ -117,19 +117,17 @@ class CartKinematics: # Acceleration steps if move.accel_r: accel_d = move.accel_r * axis_d - mcu_stepper.step_const( - move_time, start_pos, accel_d, move.start_v * axis_r, accel) + step_const(move_time, start_pos, accel_d, + move.start_v * axis_r, accel) start_pos += accel_d move_time += move.accel_t # Cruising steps if move.cruise_r: cruise_d = move.cruise_r * axis_d - mcu_stepper.step_const( - move_time, start_pos, cruise_d, cruise_v, 0.) + step_const(move_time, start_pos, cruise_d, cruise_v, 0.) start_pos += cruise_d move_time += move.cruise_t # Deceleration steps if move.decel_r: decel_d = move.decel_r * axis_d - mcu_stepper.step_const( - move_time, start_pos, decel_d, cruise_v, -accel) + step_const(move_time, start_pos, decel_d, cruise_v, -accel) -- cgit v1.2.3-70-g09d2