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
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";
The text was updated successfully, but these errors were encountered:
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 likeThe text was updated successfully, but these errors were encountered: