diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-02-14 20:29:04 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-02-20 12:01:21 -0500 |
commit | 7b90830ae578544cf6ebe7bdbc70baea1f6b1509 (patch) | |
tree | 2dac2b2545bf9360204508198c51dfcb134ed527 /klippy/chelper/serialqueue.h | |
parent | 98c7c7603e92d39e2f87b82cb228aeda0b8d9f45 (diff) | |
download | kutter-7b90830ae578544cf6ebe7bdbc70baea1f6b1509.tar.gz kutter-7b90830ae578544cf6ebe7bdbc70baea1f6b1509.tar.xz kutter-7b90830ae578544cf6ebe7bdbc70baea1f6b1509.zip |
serialqueue: Remove unused serialqueue_encode_and_send() function
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/chelper/serialqueue.h')
-rw-r--r-- | klippy/chelper/serialqueue.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/klippy/chelper/serialqueue.h b/klippy/chelper/serialqueue.h index aa51df40..807e9883 100644 --- a/klippy/chelper/serialqueue.h +++ b/klippy/chelper/serialqueue.h @@ -55,9 +55,6 @@ void serialqueue_send_batch(struct serialqueue *sq, struct command_queue *cq void serialqueue_send(struct serialqueue *sq, struct command_queue *cq , uint8_t *msg, int len , uint64_t min_clock, uint64_t req_clock); -void serialqueue_encode_and_send( - struct serialqueue *sq, struct command_queue *cq - , uint32_t *data, int len, uint64_t min_clock, uint64_t req_clock); 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_freq |