diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-06-27 13:23:53 -0400 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2019-07-10 10:43:20 -0400 |
commit | c3fe3d0d2c2463ee8b5f3a566707d18da69da55a (patch) | |
tree | 0e09f5ba7d242697bf7910085b1b10a80ce52bf0 /klippy/chelper/__init__.py | |
parent | 07e8925e08941d5416200630ea2d877afcc5c8e9 (diff) | |
download | kutter-c3fe3d0d2c2463ee8b5f3a566707d18da69da55a.tar.gz kutter-c3fe3d0d2c2463ee8b5f3a566707d18da69da55a.tar.xz kutter-c3fe3d0d2c2463ee8b5f3a566707d18da69da55a.zip |
stepcompress: Remove no longer needed stepcompress_set_homing()
Now that homing is implemented via "drip moves", it is no longer
necessary for the stepcompress code to have special homing logic.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/chelper/__init__.py')
-rw-r--r-- | klippy/chelper/__init__.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/klippy/chelper/__init__.py b/klippy/chelper/__init__.py index aeacb9d0..6de764f0 100644 --- a/klippy/chelper/__init__.py +++ b/klippy/chelper/__init__.py @@ -31,7 +31,6 @@ defs_stepcompress = """ , 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_set_homing(struct stepcompress *sc, uint64_t homing_clock); int stepcompress_queue_msg(struct stepcompress *sc , uint32_t *data, int len); |