Skip to content

Commit 7021fbc

Browse files
committed
Move firmware version from startup to main menu.
1 parent 67f0be0 commit 7021fbc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Firmware/RTK_Surveyor/RTK_Surveyor.ino

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
*/
3838

3939
const int FIRMWARE_VERSION_MAJOR = 1;
40-
const int FIRMWARE_VERSION_MINOR = 0;
40+
const int FIRMWARE_VERSION_MINOR = 1;
4141

4242
//Define the RTK Surveyor board identifier:
4343
// This is an int which is unique to this variant of the RTK Surveyor and which allows us
@@ -253,7 +253,6 @@ void setup()
253253
}
254254

255255
Serial.flush(); //Complete any previous prints
256-
Serial.printf("SparkFun RTK Surveyor v%d.%d\r\n", FIRMWARE_VERSION_MAJOR, FIRMWARE_VERSION_MINOR);
257256

258257
danceLEDs(); //Turn on LEDs like a car dashboard
259258

Firmware/RTK_Surveyor/menuMain.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ void menuMain()
55
while (1)
66
{
77
Serial.println();
8+
Serial.printf("SparkFun RTK Surveyor v%d.%d\r\n", FIRMWARE_VERSION_MAJOR, FIRMWARE_VERSION_MINOR);
89
Serial.println(F("Menu: Main Menu"));
910

1011
Serial.print("** Bluetooth broadcasting as: ");

0 commit comments

Comments
 (0)