Skip to content

v2.1 Release #157

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 43 commits into from
Jun 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
14d506c
Add icon diagrams
LeeLeahy2 May 24, 2022
6404acd
Squashed commit of the following:
nseidle May 26, 2022
d32c238
u-blox Update GUI - initial commit
PaulZC May 27, 2022
e433fca
u-blox Update GUI - initial commit
PaulZC May 27, 2022
7c8cd5f
Add checkboxes for safeboot and training sequence etc.
PaulZC May 28, 2022
eaeff51
Merge branch 'release_candidate' of https://github.com/sparkfun/Spark…
PaulZC May 28, 2022
6d28653
Merge pull request #146 from sparkfun/Update_U-blox_GUI
PaulZC May 28, 2022
34f2138
Use the local copy of flash.xml
PaulZC May 28, 2022
7832747
Add FTD2XX.DLL
PaulZC May 28, 2022
99bdeaf
Revert "Add FTD2XX.DLL"
PaulZC May 28, 2022
cb31646
Change override message box to warning
PaulZC May 28, 2022
2ef13f2
Add "No FIS" and "Update Baud Rate"
PaulZC May 28, 2022
4f912bf
Default to No FIS; no Safeboot. Add warning when No FIS is deselected
PaulZC May 30, 2022
04dcd41
Change L-Band menu to PointPerfect. Add AP config for PointPerfect, e…
nseidle May 31, 2022
a32af4d
Add RC binary
nseidle May 31, 2022
c0fc67a
Handle display of battery icon
LeeLeahy2 May 26, 2022
f853c47
Handle display of wireless icons
LeeLeahy2 May 26, 2022
1bb64f9
Handle display of logging icon
LeeLeahy2 May 26, 2022
8ff0d9f
Display base state
LeeLeahy2 May 27, 2022
5924d0d
Display horizontal accuracy
LeeLeahy2 May 27, 2022
6f93ca0
Display satellite icon and satellites in view
LeeLeahy2 May 27, 2022
74d2f43
Remove duplicate online.display checks
LeeLeahy2 May 27, 2022
a78e602
Handle transmitting RTCM, remove duplicate code
LeeLeahy2 May 27, 2022
66ba9e7
Handle casting RTCM, remove duplicate code
LeeLeahy2 May 27, 2022
1e4b820
Handle connection to NTRIP caster
LeeLeahy2 May 28, 2022
46360fc
Add icon comments
LeeLeahy2 May 28, 2022
68bdf21
Move printTextwithKerning into Display.ino
LeeLeahy2 May 28, 2022
cc807df
Move beginDisplay into Display.ino
LeeLeahy2 May 28, 2022
7a35d6b
Moved display variables into Display.ino
LeeLeahy2 May 28, 2022
bf17164
Change fault to default
LeeLeahy2 Jun 1, 2022
354fb05
Merge pull request #150 from LeeLeahy2/gss-menu
nseidle Jun 1, 2022
3d0b11a
Merge pull request #141 from LeeLeahy2/icons
nseidle Jun 1, 2022
5971483
Merge pull request #148 from LeeLeahy2/display
nseidle Jun 1, 2022
23ac1c4
Fix for issue #153
nseidle Jun 1, 2022
46b5216
Additional fixes for #153. Allow for both Facet and Facet L-Band.
nseidle Jun 2, 2022
88479ce
Update top comment block
nseidle Jun 2, 2022
5ee7218
Remove PointPerfect config from AP for all non-L-Band platforms.
nseidle Jun 2, 2022
e719a99
Update partition binary to support 6.5MB flash OTA0/1
nseidle Jun 2, 2022
596cfe7
Remove erroneous error print
nseidle Jun 2, 2022
29a9ce7
Fix #151 - Update GUI partitions bin
nseidle Jun 2, 2022
a13a0e8
Only validate platform compatible portions of AP page
nseidle Jun 2, 2022
84623ae
Update release binary
nseidle Jun 2, 2022
80acdd0
Delete configure_gnss_receiver.md
nseidle Jun 2, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added Binaries/RTK_Surveyor_Firmware_v2_1.bin
Binary file not shown.
Binary file modified Binaries/bin/RTK_Surveyor.ino.partitions.bin
Binary file not shown.
531 changes: 389 additions & 142 deletions Firmware/RTK_Surveyor/AP-Config/index.html

Large diffs are not rendered by default.

349 changes: 204 additions & 145 deletions Firmware/RTK_Surveyor/AP-Config/src/main.js

Large diffs are not rendered by default.

27 changes: 3 additions & 24 deletions Firmware/RTK_Surveyor/Begin.ino
Original file line number Diff line number Diff line change
Expand Up @@ -351,29 +351,6 @@ void beginFS()
}
}

void beginDisplay()
{
if (oled.begin() == true)
{
online.display = true;

Serial.println(F("Display started"));
displaySplash();
splashStart = millis();
}
else
{
if (productVariant == RTK_SURVEYOR)
{
Serial.println(F("Display not detected"));
}
else if (productVariant == RTK_EXPRESS || productVariant == RTK_EXPRESS_PLUS || productVariant == RTK_FACET || productVariant == RTK_FACET_LBAND)
{
Serial.println(F("Display Error: Not detected."));
}
}
}

//Connect to ZED module and identify particulars
void beginGNSS()
{
Expand Down Expand Up @@ -436,7 +413,7 @@ void beginGNSS()
Serial.printf("Unknown ZED module: %s\n\r", i2cGNSS.minfo.extension[3]);
zedModuleType = PLATFORM_F9P;
}

printModuleInfo(); //Print module type and firmware version
}

Expand Down Expand Up @@ -612,6 +589,8 @@ void beginSystemState()
}

firstRoverStart = true; //Allow user to enter test screen during first rover start
if (systemState == STATE_BASE_NOT_STARTED)
firstRoverStart = false;

powerBtn = new Button(pin_powerSenseAndControl); //Create the button in memory
}
Expand Down
Loading