HACK: Disable Stats message parsing

The size changed in 13.0b4, need to figure out the new size...

Signed-off-by: Asahi Lina <lina@asahilina.net>
This commit is contained in:
Asahi Lina 2022-08-17 12:58:48 +09:00
parent 35067afec3
commit 3ad561bc25
2 changed files with 2 additions and 2 deletions

View file

@ -117,7 +117,7 @@ class GPUKTraceChannel(GPURXChannel):
MSG_CLASS = KTraceMsg
class GPUStatsChannel(GPURXChannel):
MSG_CLASS = StatsMsg
MSG_CLASS = HexDump(Bytes(0x60))
def handle_message(self, msg):
if self.agx.show_stats:

View file

@ -348,7 +348,7 @@ channelRings = (
(FWLogMsg, 0xd8, 0x100), # unk 5
],
[(KTraceMsg, 0x38, 0x200)],
[(StatsMsg, 0x30, 0x100)],
[(HexDump(Bytes(0x60)), 0x60, 0x100)],
[(FWCtlMsg, 0x14, 0x100)],
]
)