prunkdump / arduino-variometer

Arduino based variometer with accelerometer, screen, gps and sdcard code
GNU General Public License v3.0
84 stars 40 forks source link

Using a NEO6MV2 (XM37-1612) , old GPS #25

Closed olitask closed 5 years ago

olitask commented 5 years ago

Hello I've been using an old NEO6MV2 , XM37-1612 GPS . I got totally wrong information for time & speed . To correct this, You' have to edit NmeaParse.h and change to

#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

Thanks to Baptiste .

prunkdump commented 5 years ago

These parameters have now moved to VarioSettings.h.

Thanks for the report.