You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 19, 2026. It is now read-only.
In gps/NmeaParser.java, line 48-51, for the message type identifier, some devices use "GN" instead of "GP" as TalkerID, it's better to support that as well. In that case, identifiers will look like
// NMEA Message Types
private static final String GGA = "GNGGA";
private static final String GSV = "GNGSV";
private static final String GLL = "GNPGLL";
private static final String RMC = "GNRMC";
In
gps/NmeaParser.java, line 48-51, for the message type identifier, some devices use "GN" instead of "GP" as TalkerID, it's better to support that as well. In that case, identifiers will look like