mirror of
https://github.com/meshcore-dev/meshcore_py.git
synced 2026-06-11 11:56:18 +00:00
fix for telemetry (ignore 8 last bytes)
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user