Skip to content

Commit 09aa47b

Browse files
committed
Tweaks
1 parent 9490b24 commit 09aa47b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Firmware/RTK_Everywhere/RTK_Everywhere.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -835,7 +835,7 @@ char *latestEASessionData;
835835
uint8_t wifiMACAddress[6]; // Display this address in the system menu
836836
uint8_t btMACAddress[6]; // Display this address when Bluetooth is enabled, otherwise display wifiMACAddress
837837
uint8_t ethernetMACAddress[6]; // Display this address when Ethernet is enabled, otherwise display wifiMACAddress
838-
char deviceName[70]; // The serial string that is broadcast. Ex: 'EVK Base-BC61'
838+
char deviceName[40]; // The serial string that is broadcast. E.g.: 'SparkFun Postcard-ABCD'
839839
char serialNumber[5]; // The serial number for MFi. Ex: 'BC61'
840840
char deviceFirmware[9]; // The firmware version for MFi. Ex: 'v2.2'
841841
const uint16_t menuTimeout = 60 * 10; // Menus will exit/timeout after this number of seconds

Firmware/RTK_Everywhere/menuSystem.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ void menuSystem()
417417
printUnknown(incoming);
418418
}
419419

420-
// Restart Bluetooth radio if settings have changed (ignore clearBtPairings)
420+
// Update Bluetooth radio if settings have changed (ignore clearBtPairings)
421421
mmSetBluetoothProtocol(bluetoothUserChoice, settings.clearBtPairings);
422422

423423
clearBuffer(); // Empty buffer of any newline chars

Firmware/RTK_Everywhere/support.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ InputResponse getUserInputString(char *userString, uint16_t stringSize, bool loc
299299
uint8_t spot = 0;
300300
bool echo = localEcho && settings.echoUserInput;
301301

302-
while ((millis() - startTime) / 1000 <= menuTimeout)
302+
while (((millis() - startTime) / 1000) <= menuTimeout)
303303
{
304304
delay(1); // Yield to processor
305305

0 commit comments

Comments
 (0)