From bd7d45bb1a1a7b58c39d89f4c1526722bb01ca67 Mon Sep 17 00:00:00 2001 From: Bertrand Songis Date: Mon, 1 Jul 2019 09:20:42 +0200 Subject: [PATCH] 2ms delay between 2 SBUS frames is acceptable --- tools/latency.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/latency.py b/tools/latency.py index 9213ce5f2e..761671c113 100755 --- a/tools/latency.py +++ b/tools/latency.py @@ -92,7 +92,7 @@ class SBusFrame: current_frame = None last = 0 for t, value in transitions: - if t - last > 5: + if t - last > 2: if current_frame: result.append(current_frame) current_frame = SBusFrame()