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 f5d9ac4 commit a04b5d1Copy full SHA for a04b5d1
Firmware/RTK_Surveyor/Bluetooth.ino
@@ -156,7 +156,10 @@ void bluetoothStart()
156
else if (systemState >= STATE_BASE_NOT_STARTED && systemState <= STATE_BASE_FIXED_TRANSMITTING)
157
strncpy(stateName, "Base-", sizeof(stateName) - 1);
158
else
159
+ {
160
+ strncpy(stateName, "Rover-", sizeof(stateName) - 1);
161
log_d("State out of range for Bluetooth Broadcast: %d", systemState);
162
+ }
163
164
char productName[50] = {0};
165
strncpy(productName, platformPrefix, sizeof(productName));
0 commit comments