Skip to content

Commit 783ec19

Browse files
committed
Push CLI responses through BLE check
1 parent 54bab4c commit 783ec19

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Firmware/RTK_Everywhere/menuCommands.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,8 @@ void commandSendResponse(const char *innerBuffer)
450450

451451
sprintf(responseBuffer, "$%s*%02X\r\n", innerBuffer, calculatedChecksum);
452452

453-
systemPrint(responseBuffer);
453+
// CLI interactions may come from BLE or serial, respond to both interfaces
454+
bluetoothSendCommand(responseBuffer);
454455
}
455456

456457
// Checks structure of command and checksum

0 commit comments

Comments
 (0)