update meck remote repeater builds to ensure consistency with region defaults and loop detect

This commit is contained in:
pelgraine
2026-04-19 22:11:15 +10:00
parent 4ec5d17402
commit 88a56d3ff5
5 changed files with 30 additions and 6 deletions
+6
View File
@@ -246,6 +246,9 @@ void loop() {
strncpy(td.oper, cellularMQTT.getOperator(), sizeof(td.oper) - 1);
td.mqtt_connected = cellularMQTT.isConnected();
td.neighbor_count = 0; // TODO: expose from MyMesh
td.loop_detect = p->loop_detect;
td.path_hash_mode = p->path_hash_mode;
td.flood_max = p->flood_max;
cellularMQTT.updateTelemetry(td);
lastTelemUpdate = millis();
@@ -299,6 +302,9 @@ void loop() {
strncpy(td.node_name, p->node_name, sizeof(td.node_name) - 1);
td.mqtt_connected = wifiMQTT.isConnected();
td.neighbor_count = 0;
td.loop_detect = p->loop_detect;
td.path_hash_mode = p->path_hash_mode;
td.flood_max = p->flood_max;
wifiMQTT.updateTelemetry(td);
lastTelemUpdate = millis();