mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-08-04 20:44:02 -06:00
bltouch: Increase default pin_move_time from 200ms to 675ms
Use the same pin move time that Marlin uses. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
cd8678aa6d
commit
345a5f4e1f
2 changed files with 4 additions and 4 deletions
|
@ -47,7 +47,7 @@ class BLTouchEndstopWrapper:
|
|||
'pin_up_touch_mode_reports_triggered', True)
|
||||
self.start_mcu_pos = []
|
||||
# Calculate pin move time
|
||||
pmt = max(config.getfloat('pin_move_time', 0.200), MIN_CMD_TIME)
|
||||
pmt = max(config.getfloat('pin_move_time', 0.675), MIN_CMD_TIME)
|
||||
self.pin_move_time = math.ceil(pmt / SIGNAL_PERIOD) * SIGNAL_PERIOD
|
||||
# Wrappers
|
||||
self.get_mcu = self.mcu_endstop.get_mcu
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue