Add setMainTalkerID and setHighPrecisionMode

This commit is contained in:
PaulZC
2022-01-13 10:38:20 +00:00
parent 34b982841a
commit a1814e32ab
5 changed files with 115 additions and 34 deletions
+3 -3
View File
@@ -2250,11 +2250,11 @@ struct nmeaAutomaticFlags
};
// The max length for NMEA messages should be 82 bytes, but GGA messages can exceed that if they include the
// extra decimal places for "High Precision".
// extra decimal places for "High Precision Mode".
//
// To be safe, let's allocate 90 bytes to store the GGA message
// To be safe, let's allocate 100 bytes to store the GGA message
const uint8_t NMEA_GGA_MAX_LENGTH = 90;
const uint8_t NMEA_GGA_MAX_LENGTH = 100;
typedef struct
{