1
0
Fork 0

altMSL appeared in API 9.

ycs232-kbc
Daniel Caujolle-Bert 4 years ago
parent 983058fde1
commit 1ce3d6d186
No known key found for this signature in database
GPG Key ID: A7B7A4BEAA82789B

@ -306,7 +306,11 @@ void CAPRSWriter::sendIdFrameMobile()
float rawLatitude = float(m_gpsdData.fix.latitude);
float rawLongitude = float(m_gpsdData.fix.longitude);
#if GPSD_API_MAJOR_VERSION >= 9
float rawAltitude = float(m_gpsdData.fix.altMSL);
#else
float rawAltitude = float(m_gpsdData.fix.altitude);
#endif
float rawVelocity = float(m_gpsdData.fix.speed);
float rawBearing = float(m_gpsdData.fix.track);

Loading…
Cancel
Save