Skip to content

Commit 5ce67bc

Browse files
committed
Remove support for IMES constellation.
1 parent daba9f8 commit 5ce67bc

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Firmware/RTK_Surveyor/menuGNSS.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ bool configureConstellations()
252252
{
253253
bool response = true;
254254

255-
long startTime = millis();
255+
//long startTime = millis();
256256
for (int x = 0 ; x < MAX_CONSTELLATIONS ; x++)
257257
{
258258
//Standard UBX protocol method takes ~533-783ms
@@ -265,9 +265,9 @@ bool configureConstellations()
265265
// if (currentlyEnabled != ubxConstellations[x].enabled)
266266
// response &= i2cGNSS.setVal(ubxConstellations[x].configKey, ubxConstellations[x].enabled);
267267
}
268-
long stopTime = millis();
268+
//long stopTime = millis();
269269

270-
Serial.printf("setConstellation time delta: %ld ms\n\r", stopTime - startTime);
270+
//Serial.printf("setConstellation time delta: %ld ms\n\r", stopTime - startTime);
271271

272272
return (response);
273273
}

Firmware/RTK_Surveyor/settings.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,14 @@ typedef struct ubxConstellation
9595

9696
//These are the allowable constellations to receive from and log (if enabled)
9797
//Tested with u-center v21.02
98-
#define MAX_CONSTELLATIONS 7
98+
#define MAX_CONSTELLATIONS 6
9999
ubxConstellation ubxConstellations[MAX_CONSTELLATIONS] =
100100
{
101101
{UBLOX_CFG_SIGNAL_GPS_ENA, SFE_UBLOX_GNSS_ID_GPS, true, "GPS"},
102102
{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.
103103
{UBLOX_CFG_SIGNAL_GAL_ENA, SFE_UBLOX_GNSS_ID_GALILEO, true, "Galileo"},
104104
{UBLOX_CFG_SIGNAL_BDS_ENA, SFE_UBLOX_GNSS_ID_BEIDOU, true, "BeiDou"},
105-
{UBLOX_CFG_SIGNAL_QZSS_ENA, SFE_UBLOX_GNSS_ID_IMES, false, "IMES"}, //Config key does not exist?
105+
//{UBLOX_CFG_SIGNAL_QZSS_ENA, SFE_UBLOX_GNSS_ID_IMES, false, "IMES"}, //Not yet supported? Config key does not exist?
106106
{UBLOX_CFG_SIGNAL_QZSS_ENA, SFE_UBLOX_GNSS_ID_QZSS, true, "QZSS"},
107107
{UBLOX_CFG_SIGNAL_GLO_ENA, SFE_UBLOX_GNSS_ID_GLONASS, true, "GLONASS"},
108108
};

0 commit comments

Comments
 (0)