Skip to content

Commit 088ab83

Browse files
committed
Turn SBAS on by default for all platforms but Surveyor.
1 parent 5fda0e6 commit 088ab83

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Firmware/RTK_Surveyor/Begin.ino

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ void beginBoard()
3636
pin_zed_reset = 27;
3737
pin_batteryLevel_alert = 36;
3838

39+
//Bug in ZED-F9P v1.13 firmware causes RTK LED to not light when RTK Floating with SBAS on.
40+
//The following changes the POR default but will be overwritten by settings in NVM or settings file
41+
ubxConstellations[1].enabled = false;
42+
3943
strcpy(platformFilePrefix, "SFE_Surveyor");
4044
strcpy(platformPrefix, "Surveyor");
4145
}

Firmware/RTK_Surveyor/settings.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ typedef struct ubxConstellation
112112
ubxConstellation ubxConstellations[] =
113113
{
114114
{UBLOX_CFG_SIGNAL_GPS_ENA, SFE_UBLOX_GNSS_ID_GPS, true, "GPS"},
115-
{UBLOX_CFG_SIGNAL_SBAS_ENA, SFE_UBLOX_GNSS_ID_SBAS, false, "SBAS"}, //Bug in ZED-F9P v1.13 firmware causes RTK LED to not light when RTK Floating with SBAS on.
115+
{UBLOX_CFG_SIGNAL_SBAS_ENA, SFE_UBLOX_GNSS_ID_SBAS, true, "SBAS"},
116116
{UBLOX_CFG_SIGNAL_GAL_ENA, SFE_UBLOX_GNSS_ID_GALILEO, true, "Galileo"},
117117
{UBLOX_CFG_SIGNAL_BDS_ENA, SFE_UBLOX_GNSS_ID_BEIDOU, true, "BeiDou"},
118118
//{UBLOX_CFG_SIGNAL_QZSS_ENA, SFE_UBLOX_GNSS_ID_IMES, false, "IMES"}, //Not yet supported? Config key does not exist?

0 commit comments

Comments
 (0)