fix for telemetry (ignore 8 last bytes)

This commit is contained in:
Florent 2025-05-14 22:43:29 +02:00
parent 4c72ee5197
commit 9ecc98bdc0
2 changed files with 61 additions and 1 deletions

View file

@ -380,7 +380,7 @@ class MessageReader:
res = {}
res["pubkey_pre"] = data[2:8].hex()
buf = data[8:]
buf = data[8:-8]
res["data"] = buf.hex()
res["lpp"] = LppFrame().from_bytes(buf)