We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ee3db0 commit f1a1be1Copy full SHA for f1a1be1
examples/simple_room_server/MyMesh.cpp
@@ -789,7 +789,7 @@ void MyMesh::loop() {
789
if (c->extra.room.pending_ack && millisHasNowPassed(c->extra.room.ack_timeout)) {
790
c->extra.room.push_failures++;
791
c->extra.room.pending_ack = 0; // reset (TODO: keep prev expected_ack's in a list, incase they arrive LATER, after we retry)
792
- MESH_DEBUG_PRINTLN("pending ACK timed out: push_failures: %d", (uint32_t)c->push_failures);
+ MESH_DEBUG_PRINTLN("pending ACK timed out: push_failures: %d", (uint32_t)c->extra.room.push_failures);
793
}
794
795
// check next Round-Robin client, and sync next new post
0 commit comments