mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-11-04 20:36:00 +01:00
stepcompress: Remove stepcompress_queue_msg()
Callers can use syncemitter_queue_msg() instead. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
@@ -205,9 +205,7 @@ class MCU_stepper:
|
||||
if ret:
|
||||
raise error("Internal error in stepcompress")
|
||||
data = (self._reset_cmd_tag, self._oid, 0)
|
||||
ret = ffi_lib.stepcompress_queue_msg(self._stepqueue, data, len(data))
|
||||
if ret:
|
||||
raise error("Internal error in stepcompress")
|
||||
ffi_lib.syncemitter_queue_msg(self._syncemitter, 0, data, len(data))
|
||||
self._query_mcu_position()
|
||||
def _query_mcu_position(self):
|
||||
if self._mcu.is_fileoutput():
|
||||
|
||||
Reference in New Issue
Block a user