mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-11-11 15:56:04 +01:00
kinematics: Remove support for identifying Z steppers
The caller can now determine which steppers are connected to cartesian Z movement via the new stepper.is_active_axis() method. It is therefore no longer necessary for the kinematic code to identify these steppers. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
class NoneKinematics:
|
||||
def __init__(self, toolhead, config):
|
||||
pass
|
||||
def get_steppers(self, flags=""):
|
||||
def get_steppers(self):
|
||||
return []
|
||||
def calc_tag_position(self):
|
||||
return [0, 0, 0]
|
||||
|
||||
Reference in New Issue
Block a user