diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-04-08 15:17:14 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-05-11 12:46:25 -0400 |
commit | 703490da1c62486e694a346061a92e7058b6e527 (patch) | |
tree | 5825f0903e256fc8e50c88e5c129f8271a55e06a /config | |
parent | c3b973319f1c76407d25efd8e75e4e0504bffc23 (diff) | |
download | kutter-703490da1c62486e694a346061a92e7058b6e527.tar.gz kutter-703490da1c62486e694a346061a92e7058b6e527.tar.xz kutter-703490da1c62486e694a346061a92e7058b6e527.zip |
bltouch: Simplify handling of command timing
Always disable the PWM after each command sent. Automatically trim
the command duration so the PWM disable doesn't increase the total
pulse time (when the duration is 200ms or greater).
Track the ideal command end time separately from the pwm transmit time
and only delay toolhead moves to this ideal time.
Update verify_state() to automatically schedule the check using the
time of the last sent command.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'config')
-rw-r--r-- | config/example-extras.cfg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/example-extras.cfg b/config/example-extras.cfg index 7463051c..0ae9e310 100644 --- a/config/example-extras.cfg +++ b/config/example-extras.cfg @@ -620,9 +620,9 @@ #control_pin: # Pin connected to the BLTouch control pin. This parameter must be # provided. -#pin_move_time: 0.675 +#pin_move_time: 0.680 # The amount of time (in seconds) to wait for the BLTouch pin to -# move up or down. The default is 0.675 seconds. +# move up or down. The default is 0.680 seconds. #stow_on_each_sample: True # This determines if Klipper should command the pin to move up # between each probe attempt when performing a multiple probe |