mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-04-20 22:13:47 +00:00
* releasePacket() missing
This commit is contained in:
parent
33bee48d38
commit
01fc05f496
1 changed files with 4 additions and 0 deletions
|
|
@ -185,6 +185,8 @@ class MyMesh : public BaseChatMesh, ContactVisitor {
|
||||||
onRecvPacket(pkt); // loop-back, as if received over radio
|
onRecvPacket(pkt); // loop-back, as if received over radio
|
||||||
releasePacket(pkt); // undo the obtainNewPacket()
|
releasePacket(pkt); // undo the obtainNewPacket()
|
||||||
return;
|
return;
|
||||||
|
} else {
|
||||||
|
releasePacket(pkt); // undo the obtainNewPacket()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -381,6 +383,8 @@ public:
|
||||||
auto pkt = createSelfAdvert(self_name);
|
auto pkt = createSelfAdvert(self_name);
|
||||||
if (pkt) {
|
if (pkt) {
|
||||||
uint8_t len = pkt->writeTo(tmp_buf);
|
uint8_t len = pkt->writeTo(tmp_buf);
|
||||||
|
releasePacket(pkt); // undo the obtainNewPacket()
|
||||||
|
|
||||||
mesh::Utils::toHex(hex_buf, tmp_buf, len);
|
mesh::Utils::toHex(hex_buf, tmp_buf, len);
|
||||||
Serial.println("Your MeshCore biz card:");
|
Serial.println("Your MeshCore biz card:");
|
||||||
Serial.print("meshcore://"); Serial.println(hex_buf);
|
Serial.print("meshcore://"); Serial.println(hex_buf);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue