063-gtx-common-conf: add bitfilter to avoid collisions

Signed-off-by: Hans Baier <foss@hans-baier.de>
This commit is contained in:
Hans Baier 2025-02-12 12:01:14 +07:00
parent 0a19140cbe
commit f42e522731
1 changed files with 3 additions and 0 deletions

View File

@ -40,6 +40,9 @@ def bitfilter_gtx_common(frame, bit):
if word < 44 or word > 56: if word < 44 or word > 56:
return False return False
if frame < 30 or frame > 31:
return False
return True return True