Skip to content

Commit a43b53e

Browse files
committed
Correct links. Remove references to "RTK"
1 parent 7aca5ac commit a43b53e

File tree

15 files changed

+34
-38
lines changed

15 files changed

+34
-38
lines changed

.github/workflows/build-for-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build RTK GNSSDO Firmware
1+
name: Build GNSSDO Firmware
22
on:
33
workflow_dispatch:
44
branches:
@@ -7,7 +7,7 @@ env:
77
FILENAME_PREFIX: GNSSDO_Firmware
88
FIRMWARE_VERSION_MAJOR: 1
99
FIRMWARE_VERSION_MINOR: 2
10-
CORE_VERSION: 3.0.1
10+
CORE_VERSION: 3.0.7
1111

1212
jobs:
1313
build:

.github/workflows/non-release-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ env:
77
FILENAME_PREFIX: GNSSDO_Firmware
88
FIRMWARE_VERSION_MAJOR: 9
99
FIRMWARE_VERSION_MINOR: 9
10-
CORE_VERSION: 3.0.1
10+
CORE_VERSION: 3.0.7
1111

1212
jobs:
1313
build:

Firmware/GNSSDO_Firmware/Begin.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ void beginBoard()
133133

134134
char versionString[21];
135135
getFirmwareVersion(versionString, sizeof(versionString));
136-
systemPrintf("SparkFun RTK %s %s\r\n", platformPrefix, versionString);
136+
systemPrintf("SparkPNT %s %s\r\n", platformPrefix, versionString);
137137

138138
// Get unit MAC address
139139
esp_read_mac(wifiMACAddress, ESP_MAC_WIFI_STA);

Firmware/GNSSDO_Firmware/Display.ino

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -207,17 +207,13 @@ void displaySplash()
207207
oled->erase();
208208

209209
int yPos = 0;
210-
int fontHeight = 8;
211210

212-
printTextCenter("SparkFun", yPos, QW_FONT_5X7, 1, false); // text, y, font type, kerning, inverted
211+
printTextCenter("SparkPNT", yPos, QW_FONT_8X16, 1, false); // text, y, font type, kerning, inverted
213212

214-
yPos = yPos + fontHeight + 2;
215-
printTextCenter("RTK", yPos, QW_FONT_8X16, 1, false);
216-
217-
yPos = yPos + fontHeight + 5;
213+
yPos = yPos + 13;
218214
printTextCenter(productDisplayNames[productVariant], yPos, QW_FONT_8X16, 1, false);
219215

220-
yPos = yPos + fontHeight + 7;
216+
yPos = yPos + 15;
221217
char unitFirmware[50];
222218
getFirmwareVersion(unitFirmware, sizeof(unitFirmware));
223219
printTextCenter(unitFirmware, yPos, QW_FONT_5X7, 1, false);

Firmware/GNSSDO_Firmware/GNSSDO_Firmware.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
SparkFun Electronics
44
Paul Clark
55
6-
This is the firmware for the SparkFun GNSSDO.
6+
This is the firmware for the SparkFun SparkPNT GNSSDO.
77
It runs on an ESP32 and communicates with the mosaic-T and SiT5358.
88
99
Compiled with Arduino v1.8.19 with ESP32 core v3.0.1.
@@ -359,7 +359,7 @@ void setup()
359359
}
360360

361361
DMW_c("displaySplash");
362-
displaySplash(); // Display the RTK product name and firmware version
362+
displaySplash(); // Display the product name and firmware version
363363

364364
DMW_c("beginFS");
365365
beginFS(); // Start LittleFS file system for settings

Firmware/GNSSDO_Firmware/NVM.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ bool parseLine(char *str, Settings *settings)
263263
factoryReset(true); // We already have the SD semaphore
264264
}
265265

266-
// Check to see if this setting file is compatible with this version of RTK Surveyor
266+
// Check to see if this setting file is compatible with this version of firmware
267267
if (d != sizeof(Settings))
268268
systemPrintf("Settings size is %d but current firmware expects %d. Attempting to use settings from file.\r\n", (int)d,
269269
sizeof(Settings));

Firmware/GNSSDO_Firmware/menuMain.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ void menuMain()
2121
systemPrintln();
2222
char versionString[21];
2323
getFirmwareVersion(versionString, sizeof(versionString));
24-
systemPrintf("SparkFun RTK %s %s\r\n", platformPrefix, versionString);
24+
systemPrintf("SparkPNT %s %s\r\n", platformPrefix, versionString);
2525

2626
systemPrint("ESP32 WiFi MAC Address: ");
2727
systemPrintf("%02X:%02X:%02X:%02X:%02X:%02X\r\n", wifiMACAddress[0], wifiMACAddress[1], wifiMACAddress[2],

Firmware/GNSSDO_Firmware/menuSystem.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ void menuDebugSoftware()
177177
}
178178
else if (incoming == 21)
179179
{
180-
systemPrintln("Warning: changing the Handler Buffer Size will restart the RTK. Enter 0 to abort");
180+
systemPrintln("Warning: changing the Handler Buffer Size will cause a restart. Enter 0 to abort");
181181
systemPrint("Enter GNSS Handler Buffer Size in Bytes (32 to 65535): ");
182182
int queSize = getNumber(); // Returns EXIT, TIMEOUT, or long
183183
if ((queSize != INPUT_RESPONSE_GETNUMBER_EXIT) && (queSize != INPUT_RESPONSE_GETNUMBER_TIMEOUT))
@@ -215,7 +215,7 @@ void menuDebugSoftware()
215215
}
216216
else if (incoming == 23)
217217
{
218-
systemPrintln("Warning: changing the Receive Buffer Size will restart the RTK. Enter 0 to abort");
218+
systemPrintln("Warning: changing the Receive Buffer Size will cause a restart. Enter 0 to abort");
219219
systemPrint("Enter UART Receive Buffer Size in Bytes (32 to 16384): ");
220220
int queSize = getNumber(); // Returns EXIT, TIMEOUT, or long
221221
if ((queSize != INPUT_RESPONSE_GETNUMBER_EXIT) && (queSize != INPUT_RESPONSE_GETNUMBER_TIMEOUT))

Firmware/GNSSDO_Firmware/settings.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ const uint8_t DisplayHeight[DISPLAY_MAX_NONE] = { 48, 64 };
230230

231231
// These are the allowable messages to broadcast and log (if enabled)
232232

233-
// This is all the settings that can be set on RTK Surveyor. It's recorded to NVM and the config file.
233+
// This is all the firmware settings. It's recorded to NVM and the config file.
234234
typedef struct
235235
{
236236
int sizeOfSettings = 0; // sizeOfSettings **must** be the first entry and must be int

docs/github/contribute.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# Contribute: Make an Augmentation!
2-
Spot an improvement opportunity? Feel free to contribute to our open-source design and documentation. <a href="https://github.com/sparkfun/SparkFun_RTK_mosaic-X5/pulls" alt="Pull Requests"><img src="https://img.shields.io/github/issues-pr/sparkfun/SparkFun_RTK_mosaic-X5.svg" /></a>
2+
Spot an improvement opportunity? Feel free to contribute to our open-source design and documentation. <a href="https://github.com/sparkfun/SparkFun_GNSSDO/pulls" alt="Pull Requests"><img src="https://img.shields.io/github/issues-pr/sparkfun/SparkFun_GNSSDO.svg" /></a>
33

44
## :material-file-document-multiple:&nbsp;Improve our Documentation
55
All of this documentation can be modified by you! Please help us make it better.
66

7-
* These pages are contained in the [`docs` folder](https://github.com/sparkfun/SparkFun_RTK_mosaic-X5/tree/main/docs) of the [SparkFun RTK mosaic-X5 repository](https://github.com/sparkfun/SparkFun_RTK_mosaic-X5).
7+
* These pages are contained in the [`docs` folder](https://github.com/sparkfun/SparkFun_GNSSDO/tree/main/docs) of the [SparkFun GNSSDO repository](https://github.com/sparkfun/SparkFun_GNSSDO).
88

99
<!-- ### :material-source-pull:&nbsp;Submit a Correction -->
1010
### Submit a Correction
1111

12-
1. With a GitHub account, [fork this repository](https://github.com/sparkfun/SparkFun_RTK_mosaic-X5/fork).
12+
1. With a GitHub account, [fork this repository](https://github.com/sparkfun/SparkFun_GNSSDO/fork).
1313
2. Add your corrections or improvements to the markdown file.
1414
3. File a pull request with your changes, and enjoy making the ~~words~~ ~~worlds~~ world a better place.
1515
* Once received, the documentation specialist will automatically be notified.
@@ -18,12 +18,12 @@ All of this documentation can be modified by you! Please help us make it better.
1818
## :material-cog:&nbsp;Improve our Hardware Design
1919
All of our designs are open-source! Please help us make it better.
2020

21-
* Our board design files are contained in the [`Hardware` folder](https://github.com/sparkfun/SparkFun_RTK_mosaic-X5/tree/main/Hardware) of the [SparkFun RTK mosaic-X5 repository](https://github.com/sparkfun/SparkFun_RTK_mosaic-X5).
21+
* Our board design files are contained in the [`Hardware` folder](https://github.com/sparkfun/SparkFun_GNSSDO/tree/main/Hardware) of the [SparkFun GNSSDO repository](https://github.com/sparkfun/SparkFun_GNSSDO).
2222

2323
<!-- ### :material-source-pull:&nbsp;Submit a Design Enhancement -->
2424
### Submit a Design Enhancement
2525

26-
1. With a GitHub account, [fork this repository](https://github.com/sparkfun/SparkFun_RTK_mosaic-X5/fork).
26+
1. With a GitHub account, [fork this repository](https://github.com/sparkfun/SparkFun_GNSSDO/fork).
2727
2. Add your design augmentation(s)
2828
3. File a pull request with your changes, and enjoy making the ~~words~~ ~~worlds~~ world a better place.
2929
1. Once received, the engineer in charge of the original design will automatically be notified.
@@ -36,6 +36,6 @@ All of our designs are open-source! Please help us make it better.
3636
## Contributors&nbsp;:clap:
3737
Let's provide some recognition to the contributors for this project!
3838

39-
![GitHub Contributors Image](https://contrib.rocks/image?repo=sparkfun/SparkFun_RTK_mosaic-X5)
39+
![GitHub Contributors Image](https://contrib.rocks/image?repo=sparkfun/SparkFun_GNSSDO)
4040
<br>
41-
<a href="https://github.com/sparkfun/SparkFun_RTK_mosaic-X5/pulls" alt="Pull Requests"><img src="https://img.shields.io/github/contributors/sparkfun/SparkFun_RTK_mosaic-X5.svg" /></a>
41+
<a href="https://github.com/sparkfun/SparkFun_GNSSDO/pulls" alt="Pull Requests"><img src="https://img.shields.io/github/contributors/sparkfun/SparkFun_GNSSDO.svg" /></a>

0 commit comments

Comments
 (0)