Home | History | Annotate | Download | only in libloc_api_50001

Lines Matching refs:locationExtended

118                                const GpsLocationExtended &locationExtended,
191 if (locationExtended.flags & GPS_LOCATION_EXTENDED_HAS_DOP)
192 { // dop is in locationExtended, (QMI)
194 locationExtended.pdop,
195 locationExtended.hdop,
196 locationExtended.vdop);
223 if (locationExtended.flags & GPS_LOCATION_EXTENDED_HAS_MAG_DEV)
225 float magTrack = location.gpsLocation.bearing - locationExtended.magneticDeviation;
390 if (locationExtended.flags & GPS_LOCATION_EXTENDED_HAS_MAG_DEV)
392 float magneticVariation = locationExtended.magneticDeviation;
505 if (locationExtended.flags & GPS_LOCATION_EXTENDED_HAS_DOP)
506 { // dop is in locationExtended, (QMI)
508 gpsQuality, svUsedCount, locationExtended.hdop);
529 if (locationExtended.flags & GPS_LOCATION_EXTENDED_HAS_ALTITUDE_MEAN_SEA_LEVEL)
532 locationExtended.altitudeMeanSeaLevel);
548 (locationExtended.flags & GPS_LOCATION_EXTENDED_HAS_ALTITUDE_MEAN_SEA_LEVEL))
551 location.gpsLocation.altitude - locationExtended.altitudeMeanSeaLevel);
607 const GpsSvStatus &svStatus, const GpsLocationExtended &locationExtended)
820 if (locationExtended.flags & GPS_LOCATION_EXTENDED_HAS_DOP)
822 loc_eng_data_p->pdop = locationExtended.pdop;
823 loc_eng_data_p->hdop = locationExtended.hdop;
824 loc_eng_data_p->vdop = locationExtended.vdop;