Skip to content

Commit ca63b77

Browse files
committed
On Torch (UM980) don't trust the saved Base/Rover configuration
1 parent 457cd6a commit ca63b77

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

Firmware/RTK_Everywhere/GNSS_UM980.ino

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -166,12 +166,13 @@ bool GNSS_UM980::configureBase()
166166
return (false);
167167
}
168168

169-
if (settings.gnssConfiguredBase)
170-
{
171-
if (settings.debugGnss)
172-
systemPrintln("Skipping UM980 Base configuration");
173-
return true;
174-
}
169+
// // If our settings haven't changed, trust GNSS's settings
170+
// if (settings.gnssConfiguredBase)
171+
// {
172+
// if (settings.debugGnss)
173+
// systemPrintln("Skipping UM980 Base configuration");
174+
// return true;
175+
// }
175176

176177
disableAllOutput();
177178

@@ -225,6 +226,7 @@ bool GNSS_UM980::configureOnce()
225226
Enable selected RTCM messages on COM3
226227
*/
227228

229+
// // If our settings haven't changed, trust GNSS's settings
228230
if (settings.gnssConfiguredOnce)
229231
{
230232
systemPrintln("UM980 configuration maintained");
@@ -342,12 +344,12 @@ bool GNSS_UM980::configureRover()
342344
return (false);
343345
}
344346

345-
// If our settings haven't changed, trust GNSS's settings
346-
if (settings.gnssConfiguredRover)
347-
{
348-
systemPrintln("Skipping UM980 Rover configuration");
349-
return (true);
350-
}
347+
// // If our settings haven't changed, trust GNSS's settings
348+
// if (settings.gnssConfiguredRover)
349+
// {
350+
// systemPrintln("Skipping UM980 Rover configuration");
351+
// return (true);
352+
// }
351353

352354
disableAllOutput();
353355

0 commit comments

Comments
 (0)