Handle GPSd API version about fix status.

This commit is contained in:
Daniel Caujolle-Bert
2023-05-21 05:28:55 +02:00
parent a858cf5276
commit 859c899ec8

View File

@@ -101,7 +101,11 @@ void CGPSD::sendReport()
return;
#endif
#if GPSD_API_MAJOR_VERSION >= 10
if (m_gpsdData.fix.status != STATUS_FIX)
#else
if (m_gpsdData.status != STATUS_FIX)
#endif
return;
bool latlonSet = (m_gpsdData.set & LATLON_SET) == LATLON_SET;