Hello again
please check the hunterpro decoder :
add this when you have time or in the next release maybe, this is for CP60-FX the the previous  one for HP-LOW
            .number("-(d+)-")                    // identifier
            .text("$GPRMC,")
            .number("(dd)(dd)(dd).?d*,")         // time
            .expression("([AV]),")               // validity
            .number("(dd)(dd.d+),")              // latitude
            .expression("([NS]),")
            .number("(ddd)(dd.d+),")             // longitude
            .expression("([EW]),")
            .number("(d+.?d*)?,")                // speed
            .number("(d+.?d*)?,")                // course
            .number("(dd)(dd)(dd)")              // date (ddmmyy)
            .any()
            .compile();
good luck
Ismail
If you want to add something, please send a pull request on GitHub.
Hello again
please check the hunterpro decoder :
add this when you have time or in the next release maybe, this is for CP60-FX the the previous one for HP-LOW
.number("-(d+)-") // identifier .text("$GPRMC,") .number("(dd)(dd)(dd).?d*,") // time .expression("([AV]),") // validity .number("(dd)(dd.d+),") // latitude .expression("([NS]),") .number("(ddd)(dd.d+),") // longitude .expression("([EW]),") .number("(d+.?d*)?,") // speed .number("(d+.?d*)?,") // course .number("(dd)(dd)(dd)") // date (ddmmyy) .any() .compile();good luck
Ismail