-
Notifications
You must be signed in to change notification settings - Fork 41
Description
Hello,
I replaced my old GPS module by the blue NEO6MV2 and the 10DOF sensor whith combined MS5611 and MPU9250. Before it was the red NEO6M and the MS5611 and MPU9250 separate.
I am using the jpg63 software. With the new software the display starts blinking after around 30s and is frozen and no sound. Then it restarts and it could also happen that the display is mixed up and there is a continous sound before it restarts again.
The display is OK
The display is mixed up and the attitude changes to baro value. After the automatic restart it is like the first picture again.
I read the issue "Using a NEO6MV2 (XM37-1612) , old GPS" and changed the NMEA_Parser settings and the restart problem is solved but the shown valeus for the time and attitude are wrong.
//#define NMEA_PARSER_RMC_SPEED_PRECISION 1000.0
//#define NMEA_PARSER_GGA_TIME_PRECISION 100
//#define NMEA_PARSER_GGA_ALTITUDE_PRECISION 10.0
#define NMEA_PARSER_RMC_SPEED_PRECISION 100 // initialement 1000.0
#define NMEA_PARSER_GGA_TIME_PRECISION 1000 //initialement 100
#define NMEA_PARSER_GGA_ALTITUDE_PRECISION 100.0 //initialement 10.0
What is the meaning of the parameters and what are valid values. Which can I use that the values are correct but my restart problem is further solved?
Best regards
LL03