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 870b5d2 commit 1ba69f3Copy full SHA for 1ba69f3
examples/companion_radio/MyMesh.cpp
@@ -1374,13 +1374,6 @@ void MyMesh::handleCmdFrame(size_t len) {
1374
writeErrFrame(ERR_CODE_NOT_FOUND); // contact not found
1375
}
1376
} else if (cmd_frame[0] == CMD_SEND_TELEMETRY_REQ && len == 4) { // 'self' telemetry request
1377
- out_frame[0] = RESP_CODE_SENT;
1378
- out_frame[1] = 0;
1379
- uint32_t tag = 0, est_timeout = 50;
1380
- memcpy(&out_frame[2], &tag, 4);
1381
- memcpy(&out_frame[6], &est_timeout, 4);
1382
- _serial->writeFrame(out_frame, 10);
1383
-
1384
telemetry.reset();
1385
telemetry.addVoltage(TELEM_CHANNEL_SELF, (float)board.getBattMilliVolts() / 1000.0f);
1386
// query other sensors -- target specific
0 commit comments