mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-04-05 10:17:03 +00:00
Fix problems with old gcc
This commit is contained in:
parent
52f3eaa373
commit
07484e094c
@ -69,7 +69,7 @@ rtklib_solver::rtklib_solver(int nchannels, std::string dump_filename, bool flag
|
||||
//RTKLIB PVT solver options
|
||||
/* defaults processing options */
|
||||
prcopt_t default_opt={PMODE_SINGLE,0,2,SYS_GPS, /* mode,soltype,nf,navsys */
|
||||
15.0*D2R,{}, /* elmin,snrmask */
|
||||
15.0*D2R,{{}, {{},{}} }, /* elmin,snrmask */
|
||||
0,1,1,1, /* sateph,modear,glomodear,bdsmodear */
|
||||
5,0,10,1, /* maxout,minlock,minfix,armaxiter */
|
||||
0,0,0,0, /* estion,esttrop,dynamics,tidecorr */
|
||||
@ -86,11 +86,12 @@ rtklib_solver::rtklib_solver(int nchannels, std::string dump_filename, bool flag
|
||||
{},{},{}, /* baseline,ru,rb */
|
||||
{"",""}, /* anttype */
|
||||
{},{},{}, /* antdel,pcv,exsats */
|
||||
{},{},{},{},{},{},{},{},{},{}
|
||||
0, 0, 0, {"",""}, 0, 0, {}, {}, 0, 0
|
||||
};
|
||||
rtklib_opt=default_opt;
|
||||
rtklib_opt = default_opt;
|
||||
|
||||
old_pvt_sol={};
|
||||
old_pvt_sol = {{0,0}, {0,0,0,0,0,0}, {0,0,0,0,0,0}, {0,0,0,0,0,0},
|
||||
'0', '0', '0', 0, 0, 0 };
|
||||
|
||||
// ############# ENABLE DATA FILE LOG #################
|
||||
if (d_flag_dump_enabled == true)
|
||||
@ -147,10 +148,10 @@ bool rtklib_solver::get_PVT(std::map<int,Gnss_Synchro> gnss_observables_map, dou
|
||||
if (galileo_ephemeris_iter != galileo_ephemeris_map.end())
|
||||
{
|
||||
//convert ephemeris from GNSS-SDR class to RTKLIB structure
|
||||
eph_data[valid_obs]=eph_to_rtklib(galileo_ephemeris_iter->second);
|
||||
eph_data[valid_obs] = eph_to_rtklib(galileo_ephemeris_iter->second);
|
||||
//convert observation from GNSS-SDR class to RTKLIB structure
|
||||
obsd_t newobs={};
|
||||
obs_data[valid_obs]=insert_obs_to_rtklib(newobs,
|
||||
obsd_t newobs = {{0,0}, '0', '0', '0', 0.0, 0.0, 0.0};
|
||||
obs_data[valid_obs] = insert_obs_to_rtklib(newobs,
|
||||
gnss_observables_iter->second,
|
||||
galileo_ephemeris_iter->second.WN_5,
|
||||
0);
|
||||
@ -174,7 +175,7 @@ bool rtklib_solver::get_PVT(std::map<int,Gnss_Synchro> gnss_observables_map, dou
|
||||
//convert ephemeris from GNSS-SDR class to RTKLIB structure
|
||||
eph_data[valid_obs]=eph_to_rtklib(gps_ephemeris_iter->second);
|
||||
//convert observation from GNSS-SDR class to RTKLIB structure
|
||||
obsd_t newobs={};
|
||||
obsd_t newobs = {{0,0}, '0', '0', '0', 0.0, 0.0, 0.0};
|
||||
obs_data[valid_obs]=insert_obs_to_rtklib(newobs,
|
||||
gnss_observables_iter->second,
|
||||
gps_ephemeris_iter->second.i_GPS_week,
|
||||
|
@ -89,7 +89,7 @@ double leaps[MAXLEAPS+1][7] = { /* leap seconds (y,m,d,h,m,s,utc-gpst) */
|
||||
|
||||
const prcopt_t prcopt_default = { /* defaults processing options */
|
||||
PMODE_SINGLE, 0, 2, SYS_GPS, /* mode, soltype, nf, navsys */
|
||||
15.0*D2R, {}, /* elmin, snrmask */
|
||||
15.0*D2R, {{}, {{},{}} } , /* elmin, snrmask */
|
||||
0, 1, 1, 1, /* sateph, modear, glomodear, bdsmodear */
|
||||
5, 0, 10, 1, /* maxout, minlock, minfix, armaxiter */
|
||||
0, 0, 0, 0, /* estion, esttrop, dynamics, tidecorr */
|
||||
@ -106,7 +106,7 @@ const prcopt_t prcopt_default = { /* defaults processing options */
|
||||
{}, {}, {}, /* baseline, ru, rb */
|
||||
{"",""}, /* anttype */
|
||||
{}, {}, {}, /* antdel, pcv, exsats */
|
||||
{}, {}, {}, {}, {}, {}, {}, {}, {}, {}
|
||||
0, 0, 0, {"",""}, 0, 0, {}, {}, 0, 0
|
||||
};
|
||||
|
||||
|
||||
@ -1166,7 +1166,7 @@ int str2time(const char *s, int i, int n, gtime_t *t)
|
||||
gtime_t epoch2time(const double *ep)
|
||||
{
|
||||
const int doy[] = {1, 32, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335};
|
||||
gtime_t time = {};
|
||||
gtime_t time = {0, 0};
|
||||
int days, sec, year = (int)ep[0], mon = (int)ep[1], day = (int)ep[2];
|
||||
|
||||
if (year<1970 || 2099<year || mon<1 || 12<mon) return time;
|
||||
@ -1625,8 +1625,8 @@ int adjgpsweek(int week)
|
||||
*-----------------------------------------------------------------------------*/
|
||||
unsigned int tickget(void)
|
||||
{
|
||||
struct timespec tp = {};
|
||||
struct timeval tv = {};
|
||||
struct timespec tp = {0, 0};
|
||||
struct timeval tv = {0, 0};
|
||||
|
||||
#ifdef CLOCK_MONOTONIC_RAW
|
||||
/* linux kernel > 2.6.28 */
|
||||
@ -1653,7 +1653,7 @@ unsigned int tickget(void)
|
||||
*-----------------------------------------------------------------------------*/
|
||||
void sleepms(int ms)
|
||||
{
|
||||
struct timespec ts;
|
||||
struct timespec ts = {0, 0};
|
||||
if (ms <= 0) return;
|
||||
ts.tv_sec = (time_t)(ms/1000);
|
||||
ts.tv_nsec = (long)(ms%1000*1000000);
|
||||
@ -2092,7 +2092,7 @@ void addpcv(const pcv_t *pcv, pcvs_t *pcvs)
|
||||
int readngspcv(const char *file, pcvs_t *pcvs)
|
||||
{
|
||||
FILE *fp;
|
||||
static const pcv_t pcv0 = {};
|
||||
static const pcv_t pcv0 = {0, {}, {}, {0,0}, {0,0}, {{},{}}, {{},{}} };
|
||||
pcv_t pcv;
|
||||
double neu[3];
|
||||
int n = 0;
|
||||
@ -2146,7 +2146,7 @@ int readngspcv(const char *file, pcvs_t *pcvs)
|
||||
int readantex(const char *file, pcvs_t *pcvs)
|
||||
{
|
||||
FILE *fp;
|
||||
static const pcv_t pcv0 = {};
|
||||
static const pcv_t pcv0 = {0, {}, {}, {0,0}, {0,0}, {{},{}}, {{},{}} };
|
||||
pcv_t pcv;
|
||||
double neu[3];
|
||||
int i, f, freq = 0, state = 0, freqs[] = {1, 2, 5, 6, 7, 8, 0};
|
||||
@ -2767,8 +2767,9 @@ int screent(gtime_t time, gtime_t ts, gtime_t te, double tint)
|
||||
int readnav(const char *file, nav_t *nav)
|
||||
{
|
||||
FILE *fp;
|
||||
eph_t eph0 = {};
|
||||
geph_t geph0 = {};
|
||||
eph_t eph0 = {0, 0, 0, 0, 0, 0, 0, 0, {0, 0}, {0, 0}, {0, 0}, 0.0, 0.0, 0.0, 0.0, 0.0,
|
||||
0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, {} };
|
||||
geph_t geph0 = {0, 0, 0, 0, 0, 0, {0, 0}, {0, 0}, {}, {}, {}, 0.0, 0.0, 0.0};
|
||||
char buff[4096], *p;
|
||||
long toe_time, tof_time, toc_time, ttr_time;
|
||||
int i, sat, prn;
|
||||
@ -3006,14 +3007,16 @@ void freenav(nav_t *nav, int opt)
|
||||
// va_start(ap,format); vfprintf(fp_trace,format,ap); va_end(ap);
|
||||
// fflush(fp_trace);
|
||||
//}
|
||||
void tracemat(int level, const double *A, int n, int m, int p, int q)
|
||||
void tracemat(int level __attribute__((unused)), const double *A __attribute__((unused)),
|
||||
int n __attribute__((unused)), int m __attribute__((unused)), int p __attribute__((unused)),
|
||||
int q __attribute__((unused)))
|
||||
{
|
||||
// if (!fp_trace||level>level_trace) return;
|
||||
// matfprint(A,n,m,p,q,fp_trace); fflush(fp_trace);
|
||||
}
|
||||
|
||||
|
||||
void traceobs(int level, const obsd_t *obs, int n)
|
||||
void traceobs(int level __attribute__((unused)), const obsd_t *obs __attribute__((unused)), int n __attribute__((unused)))
|
||||
{
|
||||
// char str[64],id[16];
|
||||
// int i;
|
||||
|
Loading…
x
Reference in New Issue
Block a user