diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2023-10-13 20:43:27 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2023-11-16 22:07:15 -0500 |
commit | 48a05eaa542bfd4a1099c2224bda443049a6fa64 (patch) | |
tree | acda1bae545fdf49e6b4ca8dd3f3b7b857143df8 /klippy/chelper/__init__.py | |
parent | 4688c21c54dfb89ef9902b607521a8cc0e99c94a (diff) | |
download | kutter-48a05eaa542bfd4a1099c2224bda443049a6fa64.tar.gz kutter-48a05eaa542bfd4a1099c2224bda443049a6fa64.tar.xz kutter-48a05eaa542bfd4a1099c2224bda443049a6fa64.zip |
stepcompress: Add support for queuing messages that consume move queue space
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/chelper/__init__.py')
-rw-r--r-- | klippy/chelper/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/klippy/chelper/__init__.py b/klippy/chelper/__init__.py index c94e9677..290234c5 100644 --- a/klippy/chelper/__init__.py +++ b/klippy/chelper/__init__.py @@ -49,6 +49,8 @@ defs_stepcompress = """ , uint64_t clock); int stepcompress_queue_msg(struct stepcompress *sc , uint32_t *data, int len); + int stepcompress_queue_mq_msg(struct stepcompress *sc, uint64_t req_clock + , uint32_t *data, int len); int stepcompress_extract_old(struct stepcompress *sc , struct pull_history_steps *p, int max , uint64_t start_clock, uint64_t end_clock); |