removing allocation of motion data from stack to prevent stack overflow on large motion files

This commit is contained in:
Niklas Knöll 2023-12-10 02:38:50 +01:00
parent e7b948ff49
commit bc87d137f9

View File

@ -92,6 +92,8 @@ double ant_pat_db[37] = {
int allocatedSat[MAX_SAT];
double xyz[USER_MOTION_SIZE][3];
/*! \brief Subtract two vectors of double
* \param[out] y Result of subtraction
* \param[in] x1 Minuend of subtraction
@ -1743,7 +1745,7 @@ int main(int argc, char *argv[])
int iumd;
int numd;
char umfile[MAX_CHAR];
double xyz[USER_MOTION_SIZE][3];
int staticLocationMode = FALSE;
int nmeaGGA = FALSE;