make user presses ask other nodes for their latest status

see related bug
https://github.com/meshtastic/Meshtastic-esp32/issues/59
This commit is contained in:
geeksville
2020-03-25 13:09:12 -07:00
parent 45babab8c4
commit 50d724780a
4 changed files with 18 additions and 11 deletions

View File

@@ -121,7 +121,7 @@ static void onEnter()
uint32_t now = millis();
if (now - lastPingMs > 60 * 1000) { // if more than a minute since our last press, ask other nodes to update their state
service.sendNetworkPing();
service.sendNetworkPing(NODENUM_BROADCAST, true);
lastPingMs = now;
}
}