From 9e0e2471430aebeb8e67bd0a75a247be3202fd83 Mon Sep 17 00:00:00 2001 From: TM3D Date: Fri, 7 Oct 2022 19:07:02 -0500 Subject: [PATCH] Update mcu.py Increase timeout amount to avoid false timeouts with multiple mcus. ip -s link show can0 reports zero bytes, packets lost. --- klippy/mcu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/klippy/mcu.py b/klippy/mcu.py index 3fda90dcac49..b4a292237b8c 100644 --- a/klippy/mcu.py +++ b/klippy/mcu.py @@ -125,7 +125,7 @@ def stop(self): s.note_homing_end() return params['trigger_reason'] -TRSYNC_TIMEOUT = 0.025 +TRSYNC_TIMEOUT = 0.050 TRSYNC_SINGLE_MCU_TIMEOUT = 0.250 class MCU_endstop: