diff options
author | qctecmdr <qctecmdr@localhost> | 2020-12-09 23:27:07 -0800 |
---|---|---|
committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2020-12-09 23:27:07 -0800 |
commit | 3c25bbbb134079d2e1f6e1182d266812787f9ba7 (patch) | |
tree | de976d572cf3cb7e5a1ad30ea573c61c65d049b0 | |
parent | 45c2a5a0071af5c42ea5069c6aa808639448e27a (diff) | |
parent | 5d1c823420160dfab22d1e400b8a3115c6ea6090 (diff) |
Merge "LOC-HAL: Engine plugin additions"
-rw-r--r-- | utils/gps_extended_c.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/utils/gps_extended_c.h b/utils/gps_extended_c.h index 7cef26e..691822a 100644 --- a/utils/gps_extended_c.h +++ b/utils/gps_extended_c.h @@ -1518,6 +1518,10 @@ typedef uint64_t GpsSvMeasHeaderFlags; #define GNSS_SV_MEAS_HEADER_HAS_BDS_NAVIC_INTER_SYSTEM_BIAS 0x20000000 #define GNSS_SV_MEAS_HEADER_HAS_NAVIC_SYSTEM_TIME 0x40000000 #define GNSS_SV_MEAS_HEADER_HAS_NAVIC_SYSTEM_TIME_EXT 0x80000000 +#define GNSS_SV_MEAS_HEADER_HAS_GPSL1L2C_TIME_BIAS 0x100000000 +#define GNSS_SV_MEAS_HEADER_HAS_GLOG1G2_TIME_BIAS 0x200000000 +#define GNSS_SV_MEAS_HEADER_HAS_BDSB1IB1C_TIME_BIAS 0x400000000 +#define GNSS_SV_MEAS_HEADER_HAS_GALE1E5B_TIME_BIAS 0x800000000 typedef struct { @@ -1544,6 +1548,10 @@ typedef struct Gnss_InterSystemBiasStructType gpsL1L5TimeBias; Gnss_InterSystemBiasStructType galE1E5aTimeBias; Gnss_InterSystemBiasStructType bdsB1iB2aTimeBias; + Gnss_InterSystemBiasStructType gpsL1L2cTimeBias; + Gnss_InterSystemBiasStructType gloG1G2TimeBias; + Gnss_InterSystemBiasStructType bdsB1iB1cTimeBias; + Gnss_InterSystemBiasStructType galE1E5bTimeBias; GnssSystemTimeStructType gpsSystemTime; GnssSystemTimeStructType galSystemTime; |