mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-15 12:40:35 +00:00
Fix more warnings
This commit is contained in:
parent
cc392fdde2
commit
495813c969
@ -569,9 +569,13 @@ void *rtksvrthread(void *arg)
|
||||
int rtksvrinit(rtksvr_t *svr)
|
||||
{
|
||||
gtime_t time0 = {0, 0.0};
|
||||
sol_t sol0 = {{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 };
|
||||
eph_t eph0 = {0, -1, -1, 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, {0.0}, 0.0, 0.0};
|
||||
geph_t geph0 = {0, -1, 0, 0, 0, 0, {0,0.0}, {0,0.0}, {0.0}, {0.0}, {0.0}, 0.0, 0.0, 0.0};
|
||||
sol_t sol0 = {{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 };
|
||||
eph_t eph0 = {0, -1, -1, 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, {0.0}, 0.0, 0.0};
|
||||
geph_t geph0 = {0, -1, 0, 0, 0, 0, {0,0.0}, {0,0.0}, {0.0}, {0.0}, {0.0},
|
||||
0.0, 0.0, 0.0};
|
||||
seph_t seph0 = {0, {0,0.0}, {0,0.0}, 0, 0, {0.0}, {0.0}, {0.0}, 0.0, 0.0};
|
||||
int i, j;
|
||||
|
||||
|
@ -492,7 +492,7 @@ int decode_solenu(char *buff, const solopt_t *opt, sol_t *sol)
|
||||
|
||||
|
||||
/* decode gsi f solution -----------------------------------------------------*/
|
||||
int decode_solgsi(char *buff, const solopt_t *opt, sol_t *sol)
|
||||
int decode_solgsi(char *buff, const solopt_t *opt __attribute((unused)), sol_t *sol)
|
||||
{
|
||||
double val[MAXFIELD];
|
||||
int i = 0,j;
|
||||
|
@ -158,7 +158,7 @@ void closeserial(serial_t *serial)
|
||||
|
||||
|
||||
/* read serial ---------------------------------------------------------------*/
|
||||
int readserial(serial_t *serial, unsigned char *buff, int n, char *msg)
|
||||
int readserial(serial_t *serial, unsigned char *buff, int n, char *msg __attribute__((unused)))
|
||||
{
|
||||
int nr;
|
||||
tracet(4, "readserial: dev=%d n=%d\n", serial->dev, n);
|
||||
@ -170,7 +170,7 @@ int readserial(serial_t *serial, unsigned char *buff, int n, char *msg)
|
||||
|
||||
|
||||
/* write serial --------------------------------------------------------------*/
|
||||
int writeserial(serial_t *serial, unsigned char *buff, int n, char *msg)
|
||||
int writeserial(serial_t *serial, unsigned char *buff, int n, char *msg __attribute__((unused)))
|
||||
{
|
||||
int ns;
|
||||
tracet(3, "writeserial: dev=%d n=%d\n", serial->dev, n);
|
||||
|
Loading…
Reference in New Issue
Block a user