Skip to content

Commit

Permalink
Pull the bandaid on the test return
Browse files Browse the repository at this point in the history
  • Loading branch information
Eirenliel authored Oct 30, 2024
1 parent 458f6bd commit 5315d83
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/serial/serialcommands.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,8 @@ namespace SerialCommands {
}

void printState() {
// `build` refers to the protocol version, but it hasn't been changed due to a change needed in the testing software
logger.info(
"SlimeVR Tracker, board: %d, hardware: %d, build: %d, firmware: %s, address: %s, mac: %s, status: %d, wifi state: %d",
"SlimeVR Tracker, board: %d, hardware: %d, protocol: %d, firmware: %s, address: %s, mac: %s, status: %d, wifi state: %d",
BOARD,
HARDWARE_MCU,
PROTOCOL_VERSION,
Expand Down Expand Up @@ -205,9 +204,8 @@ namespace SerialCommands {
}

if (parser->equalCmdParam(1, "TEST")) {
// `build` refers to the protocol version, but it hasn't been changed due to a change needed in the testing software
logger.info(
"[TEST] Board: %d, hardware: %d, build: %d, firmware: %s, address: %s, mac: %s, status: %d, wifi state: %d",
"[TEST] Board: %d, hardware: %d, protocol: %d, firmware: %s, address: %s, mac: %s, status: %d, wifi state: %d",
BOARD,
HARDWARE_MCU,
PROTOCOL_VERSION,
Expand Down

0 comments on commit 5315d83

Please sign in to comment.