mirror of
https://github.com/ShaYmez/NXDNClients.git
synced 2025-04-20 18:33:08 -04:00
Add more gpsd sanity checking.
This commit is contained in:
parent
019835fed7
commit
c416e55cee
@ -224,6 +224,9 @@ void CAPRSWriter::sendIdFrameMobile()
|
||||
if (::gps_read(&m_gpsdData, NULL, 0) <= 0)
|
||||
return;
|
||||
|
||||
if (m_gpsdData.status != STATUS_FIX)
|
||||
return;
|
||||
|
||||
bool latlonSet = (m_gpsdData.set & LATLON_SET) == LATLON_SET;
|
||||
bool altitudeSet = (m_gpsdData.set & ALTITUDE_SET) == ALTITUDE_SET;
|
||||
bool velocitySet = (m_gpsdData.set & SPEED_SET) == SPEED_SET;
|
||||
|
Loading…
Reference in New Issue
Block a user