You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Investigate why we're manually setting the number of satellites in view, and see if we can do an actual check from the TSIP string to validate instead.
The text was updated successfully, but these errors were encountered:
In voter.c, process_gps:
if (gps_buf[1] == 0xac) // AC is the Supplemental Timing Packet
{
...
gps_nsat = 3; // Hah, we're faking the number of received sats.
if ((gps_state == GPS_STATE_RECEIVED) && (gps_nsat > 0) && gps_time)
{
Investigate why we're manually setting the number of satellites in view, and see if we can do an actual check from the TSIP string to validate instead.
The text was updated successfully, but these errors were encountered: