@@ -172,9 +172,9 @@ bool um980ConfigureOnce()
172
172
if (um980->isConfigurationPresent (" CONFIG PPP ENABLE E6-HAS" ) == false )
173
173
{
174
174
if (um980->sendCommand (" CONFIG PPP ENABLE E6-HAS" ) == true )
175
- systemPrintln (" E6 service enabled" );
175
+ systemPrintln (" Galileo E6 service enabled" );
176
176
else
177
- systemPrintln (" E6 service config error" );
177
+ systemPrintln (" Galileo E6 service config error" );
178
178
179
179
if (um980->sendCommand (" CONFIG PPP DATUM WGS84" ) == true )
180
180
systemPrintln (" WGS84 Datum applied" );
@@ -195,9 +195,11 @@ bool um980ConfigureOnce()
195
195
if (um980->isConfigurationPresent (" CONFIG PPP ENABLE E6-HAS" ) == true )
196
196
{
197
197
if (um980->sendCommand (" CONFIG PPP DISABLE" ) == true )
198
- systemPrintln (" E6 service disabled" );
198
+ {
199
+ // systemPrintln("Galileo E6 service disabled");
200
+ }
199
201
else
200
- systemPrintln (" E6 service config error" );
202
+ systemPrintln (" Galileo E6 service config error" );
201
203
}
202
204
}
203
205
@@ -1126,13 +1128,13 @@ void um980MenuConstellations()
1126
1128
1127
1129
int incoming = getUserInputNumber (); // Returns EXIT, TIMEOUT, or long
1128
1130
1129
- if (incoming >= 1 && incoming <= MAX_CONSTELLATIONS )
1131
+ if (incoming >= 1 && incoming <= MAX_UM980_CONSTELLATIONS )
1130
1132
{
1131
1133
incoming--; // Align choice to constellation array of 0 to 5
1132
1134
1133
1135
settings.um980Constellations [incoming] ^= 1 ;
1134
1136
}
1135
- else if (incoming == MAX_CONSTELLATIONS && present.galileoHasCapable )
1137
+ else if (( incoming == MAX_UM980_CONSTELLATIONS + 1 ) && present.galileoHasCapable )
1136
1138
{
1137
1139
settings.enableGalileoHas ^= 1 ;
1138
1140
}
0 commit comments