• Home
  • Raw
  • Download

Lines Matching refs:reports

2884     SystemStatusReports reports = {};  in getDebugReport()  local
2885 systemstatus->getReport(reports, true); in getDebugReport()
2891 if(!reports.mLocation.empty() && reports.mLocation.back().mValid) { in getDebugReport()
2894 reports.mLocation.back().mLocation.gpsLocation.latitude; in getDebugReport()
2896 reports.mLocation.back().mLocation.gpsLocation.longitude; in getDebugReport()
2898 reports.mLocation.back().mLocation.gpsLocation.altitude; in getDebugReport()
2900 (double)(reports.mLocation.back().mLocation.gpsLocation.speed); in getDebugReport()
2902 (double)(reports.mLocation.back().mLocation.gpsLocation.bearing); in getDebugReport()
2904 (double)(reports.mLocation.back().mLocation.gpsLocation.accuracy); in getDebugReport()
2907 reports.mLocation.back().mLocationEx.vert_unc; in getDebugReport()
2909 reports.mLocation.back().mLocationEx.speed_unc; in getDebugReport()
2911 reports.mLocation.back().mLocationEx.bearing_unc; in getDebugReport()
2914 reports.mLocation.back().mUtcReported; in getDebugReport()
2916 else if(!reports.mBestPosition.empty() && reports.mBestPosition.back().mValid) { in getDebugReport()
2919 (double)(reports.mBestPosition.back().mBestLat); in getDebugReport()
2921 (double)(reports.mBestPosition.back().mBestLon); in getDebugReport()
2923 reports.mBestPosition.back().mBestAlt; in getDebugReport()
2926 reports.mBestPosition.back().mUtcReported.tv_sec * 1000ULL + in getDebugReport()
2927 reports.mBestPosition.back().mUtcReported.tv_nsec / 1000000ULL; in getDebugReport()
2943 if(!reports.mTimeAndClock.empty() && reports.mTimeAndClock.back().mTimeValid) { in getDebugReport()
2946 (((int64_t)(reports.mTimeAndClock.back().mGpsWeek)*7 + in getDebugReport()
2948 (int64_t)(reports.mTimeAndClock.back().mLeapSeconds))*1000ULL + in getDebugReport()
2949 (int64_t)(reports.mTimeAndClock.back().mGpsTowMs); in getDebugReport()
2952 (float)((reports.mTimeAndClock.back().mTimeUnc + in getDebugReport()
2953 reports.mTimeAndClock.back().mLeapSecUnc)*1000); in getDebugReport()
2955 (float)(reports.mTimeAndClock.back().mClockFreqBiasUnc); in getDebugReport()
2965 convertSatelliteInfo(r.mSatelliteInfo, GNSS_SV_TYPE_GPS, reports); in getDebugReport()
2966 convertSatelliteInfo(r.mSatelliteInfo, GNSS_SV_TYPE_GLONASS, reports); in getDebugReport()
2967 convertSatelliteInfo(r.mSatelliteInfo, GNSS_SV_TYPE_QZSS, reports); in getDebugReport()
2968 convertSatelliteInfo(r.mSatelliteInfo, GNSS_SV_TYPE_BEIDOU, reports); in getDebugReport()
2969 convertSatelliteInfo(r.mSatelliteInfo, GNSS_SV_TYPE_GALILEO, reports); in getDebugReport()
2982 SystemStatusReports reports = {}; in getAgcInformation() local
2983 systemstatus->getReport(reports, true); in getAgcInformation()
2985 if ((!reports.mRfAndParams.empty()) && (!reports.mTimeAndClock.empty()) && in getAgcInformation()
2986 reports.mTimeAndClock.back().mTimeValid && in getAgcInformation()
2987 (abs(msInWeek - (int)reports.mTimeAndClock.back().mGpsTowMs) < 2000)) { in getAgcInformation()
2993 reports.mRfAndParams.back().mAgcGps; in getAgcInformation()
3000 reports.mRfAndParams.back().mAgcGal; in getAgcInformation()
3007 reports.mRfAndParams.back().mAgcGlo; in getAgcInformation()
3014 reports.mRfAndParams.back().mAgcBds; in getAgcInformation()