diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2016-12-30 17:22:05 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2016-12-30 20:15:05 -0500 |
commit | c552ba06b4886d400e235267b23f86f44260bb92 (patch) | |
tree | 5ff0dc1ef600d891ff0212f9d934892f1dd5df06 /klippy/serialhdl.py | |
parent | 6bd5f4e44ec4898a6082c12df4ca7e4408a9df93 (diff) | |
download | kutter-c552ba06b4886d400e235267b23f86f44260bb92.tar.gz kutter-c552ba06b4886d400e235267b23f86f44260bb92.tar.xz kutter-c552ba06b4886d400e235267b23f86f44260bb92.zip |
serialqueue: Remove serialqueue_flush_ready()
The serialqueue_flush_ready() code was used to flush queue_step
commands during a homing operation. It's no longer necessary now that
moves during a homing operation use the normal message priority
system.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/serialhdl.py')
-rw-r--r-- | klippy/serialhdl.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/klippy/serialhdl.py b/klippy/serialhdl.py index f09c4cd1..143fd138 100644 --- a/klippy/serialhdl.py +++ b/klippy/serialhdl.py @@ -167,8 +167,6 @@ class SerialReader: def send_with_response(self, cmd, name): src = SerialRetryCommand(self, cmd, name) return src.get_response() - def send_flush(self): - self.ffi_lib.serialqueue_flush_ready(self.serialqueue) def alloc_command_queue(self): return self.ffi_main.gc(self.ffi_lib.serialqueue_alloc_commandqueue(), self.ffi_lib.serialqueue_free_commandqueue) |