From c33ec0a26bdf38a9e052f3983df19f70903d18a0 Mon Sep 17 00:00:00 2001 From: Hans Baier Date: Fri, 14 Feb 2025 03:38:36 +0700 Subject: [PATCH] 063-gtx-common-conf: fix bitfilter to include DRP and remove collisions Signed-off-by: Hans Baier --- fuzzers/063-gtx-common-conf/generate.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/fuzzers/063-gtx-common-conf/generate.py b/fuzzers/063-gtx-common-conf/generate.py index c131613e..6afcbb79 100644 --- a/fuzzers/063-gtx-common-conf/generate.py +++ b/fuzzers/063-gtx-common-conf/generate.py @@ -40,7 +40,11 @@ def bitfilter_gtx_common(frame, bit): if word < 44 or word > 56: return False - if frame < 24 or frame > 31: + # let ENABLE_DRP come through + if (frame == 24 or frame or frame == 25) and bit == 1613: + return True + + if frame < 30 or frame > 31: return False return True