aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/chelper.py
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/chelper.py
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/chelper.py')
-rw-r--r--klippy/chelper.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/chelper.py b/klippy/chelper.py
index 7b4b510a..a53304e5 100644
--- a/klippy/chelper.py
+++ b/klippy/chelper.py
@@ -59,8 +59,8 @@ defs_serialqueue = """
, 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);