Browse Source

* client_repeat state now in _DEVICE_INFO response

pull/1277/merge
Scott Powell 4 months ago
parent
commit
0abac35744
  1. 1
      examples/companion_radio/MyMesh.cpp

1
examples/companion_radio/MyMesh.cpp

@ -928,6 +928,7 @@ void MyMesh::handleCmdFrame(size_t len) {
i += 40; i += 40;
StrHelper::strzcpy((char *)&out_frame[i], FIRMWARE_VERSION, 20); StrHelper::strzcpy((char *)&out_frame[i], FIRMWARE_VERSION, 20);
i += 20; i += 20;
out_frame[i++] = _prefs.client_repeat; // v9+
_serial->writeFrame(out_frame, i); _serial->writeFrame(out_frame, i);
} else if (cmd_frame[0] == CMD_APP_START && } else if (cmd_frame[0] == CMD_APP_START &&
len >= 8) { // sent when app establishes connection, respond with node ID len >= 8) { // sent when app establishes connection, respond with node ID

Loading…
Cancel
Save