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/serialqueue.h | |
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/serialqueue.h')
-rw-r--r-- | klippy/serialqueue.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/klippy/serialqueue.h b/klippy/serialqueue.h index 20eefe3b..7cd3c703 100644 --- a/klippy/serialqueue.h +++ b/klippy/serialqueue.h @@ -61,7 +61,6 @@ void serialqueue_pull(struct serialqueue *sq, struct pull_queue_message *pqm); void serialqueue_set_baud_adjust(struct serialqueue *sq, double baud_adjust); void serialqueue_set_clock_est(struct serialqueue *sq, double est_clock , double last_ack_time, uint64_t last_ack_clock); -void serialqueue_flush_ready(struct serialqueue *sq); void serialqueue_get_stats(struct serialqueue *sq, char *buf, int len); int serialqueue_extract_old(struct serialqueue *sq, int sentq , struct pull_queue_message *q, int max); |