mirror of
https://github.com/opentx/opentx.git
synced 2025-07-13 19:40:20 +03:00
2ms delay between 2 SBUS frames is acceptable
This commit is contained in:
parent
3bb15bddf3
commit
bd7d45bb1a
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue