diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-03-08 11:14:26 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-03-13 21:53:48 -0400 |
commit | d86bf0b927b0a56bcef5a2fee98f610884c0d4a5 (patch) | |
tree | 8b14f51a63cf006822599a5968f00ff94f5c2483 /klippy/chelper/stepcompress.h | |
parent | 5e39d346eda7e3dfd5db6d535d0378ec1498e155 (diff) | |
download | kutter-d86bf0b927b0a56bcef5a2fee98f610884c0d4a5.tar.gz kutter-d86bf0b927b0a56bcef5a2fee98f610884c0d4a5.tar.xz kutter-d86bf0b927b0a56bcef5a2fee98f610884c0d4a5.zip |
stepcompress: Move code around in stepcompress.c
Just code movement - no code changes.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/chelper/stepcompress.h')
-rw-r--r-- | klippy/chelper/stepcompress.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/chelper/stepcompress.h b/klippy/chelper/stepcompress.h index 540acabe..59f12699 100644 --- a/klippy/chelper/stepcompress.h +++ b/klippy/chelper/stepcompress.h @@ -10,12 +10,12 @@ void stepcompress_fill(struct stepcompress *sc, uint32_t max_error , uint32_t invert_sdir, uint32_t queue_step_msgid , uint32_t set_next_step_dir_msgid); void stepcompress_free(struct stepcompress *sc); -int stepcompress_reset(struct stepcompress *sc, uint64_t last_step_clock); -int stepcompress_queue_msg(struct stepcompress *sc, uint32_t *data, int len); uint32_t stepcompress_get_oid(struct stepcompress *sc); int stepcompress_get_step_dir(struct stepcompress *sc); int stepcompress_append(struct stepcompress *sc, int sdir , double print_time, double step_time); +int stepcompress_reset(struct stepcompress *sc, uint64_t last_step_clock); +int stepcompress_queue_msg(struct stepcompress *sc, uint32_t *data, int len); struct serialqueue; struct steppersync *steppersync_alloc( |