diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-02-27 13:42:02 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-02-27 14:20:15 -0500 |
commit | adc4af2fc4cebae968f5ffe6ecdbef91bd414d62 (patch) | |
tree | 7cab6fdb69b7c8886b9221d4343980fab15f9e82 /klippy/chelper/serialqueue.h | |
parent | e4d52a19b81cae5c141e2b94db5843773304d5fe (diff) | |
download | kutter-adc4af2fc4cebae968f5ffe6ecdbef91bd414d62.tar.gz kutter-adc4af2fc4cebae968f5ffe6ecdbef91bd414d62.tar.xz kutter-adc4af2fc4cebae968f5ffe6ecdbef91bd414d62.zip |
serialqueue: Wrap code to 80 columns
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/chelper/serialqueue.h')
-rw-r--r-- | klippy/chelper/serialqueue.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/klippy/chelper/serialqueue.h b/klippy/chelper/serialqueue.h index 80ab686e..aa51df40 100644 --- a/klippy/chelper/serialqueue.h +++ b/klippy/chelper/serialqueue.h @@ -55,9 +55,9 @@ 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_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 |