mirror of
https://github.com/meshcore-dev/meshcore_py.git
synced 2026-04-20 22:13:49 +00:00
fix for telemetry (ignore 8 last bytes)
This commit is contained in:
parent
4c72ee5197
commit
9ecc98bdc0
2 changed files with 61 additions and 1 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue