Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef LIBSWIFTNAV_PVT_H
00015 #define LIBSWIFTNAV_PVT_H
00016
00017 #include "common.h"
00018 #include "track.h"
00019
00020 #define PVT_MAX_ITERATIONS 20
00021
00022 typedef struct {
00023 double pdop;
00024 double gdop;
00025 double tdop;
00026 double hdop;
00027 double vdop;
00028 } dops_t;
00029
00030 typedef struct __attribute__((packed)) {
00031
00032
00033
00034
00035
00037 double pos_llh[3];
00039 double pos_ecef[3];
00041 double vel_ned[3];
00043 double vel_ecef[3];
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055 double err_cov[7];
00056
00057 double clock_offset;
00058 double clock_bias;
00059
00060
00061 gps_time_t time;
00062
00063
00064 u8 valid;
00065
00066 u8 n_used;
00067 } gnss_solution;
00068
00069 s8 calc_PVT(const u8 n_used,
00070 const navigation_measurement_t nav_meas[n_used],
00071 gnss_solution *soln,
00072 dops_t *dops);
00073
00074 #endif
00075