aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/serialqueue.h
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2017-06-27 20:08:18 -0400
committerKevin O'Connor <kevin@koconnor.net>2017-06-30 20:15:36 -0400
commit067fac05a865ee2eccab02637ca82ee3f0b3705b (patch)
tree090c14f6b95ccd70062399cadf6b0ce3df474a81 /klippy/serialqueue.h
parentc7d0358c417a4daaab847277b6ecf95d1061f86e (diff)
downloadkutter-067fac05a865ee2eccab02637ca82ee3f0b3705b.tar.gz
kutter-067fac05a865ee2eccab02637ca82ee3f0b3705b.tar.xz
kutter-067fac05a865ee2eccab02637ca82ee3f0b3705b.zip
serialqueue: Rename clock estimation variable names
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/serialqueue.h')
-rw-r--r--klippy/serialqueue.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/serialqueue.h b/klippy/serialqueue.h
index 7cd3c703..678885ad 100644
--- a/klippy/serialqueue.h
+++ b/klippy/serialqueue.h
@@ -59,8 +59,8 @@ void serialqueue_encode_and_send(struct serialqueue *sq, struct command_queue *c
, 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_clock
- , double last_ack_time, uint64_t last_ack_clock);
+void serialqueue_set_clock_est(struct serialqueue *sq, double est_freq
+ , double last_clock_time, uint64_t last_clock);
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);