contrib-drivers icon indicating copy to clipboard operation
contrib-drivers copied to clipboard

Add "GN" NMEA TalkerID support for GPS driver

Open sam1016yu opened this issue 5 years ago • 1 comments

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";

sam1016yu avatar May 30 '19 12:05 sam1016yu

Google isn't actively supporting this right now, so your best bet would be to make the changes yourself and submit the pr

PaulTR avatar May 30 '19 13:05 PaulTR