NMEA0183 icon indicating copy to clipboard operation
NMEA0183 copied to clipboard

Is that compatible with newer GPS receivers of today ?

Open sdancer75 opened this issue 5 years ago • 3 comments

Thanks for your C++ class, it very interesting.

I am new in the GPS World and I was looking for a clean and small solution for my project. My question is if this class is still compatible/working with newer GPS receivers which I think they now support the newer NMEA0183 protocol.

Trying a simple C++ application I found in the codeproject.com (Add GPS support to your desktop) I get "parse error" with this class library.

Best Regards, George

sdancer75 avatar Oct 10 '19 10:10 sdancer75

INTERESTING! I haven't used it to talk to a GPS in a long time but I do find NMEA0183 data in my day job (computer forensics). Can you provide a sample of the data?

SammyB428 avatar Oct 10 '19 12:10 SammyB428

Hi,

Check this out, it uses your c++ class library

https://www.codeproject.com/Articles/3459/Add-GPS-support-to-your-desktop

sdancer75 avatar Oct 10 '19 15:10 sdancer75

I think the library is missing some newer NMEA0183 additions, and fail at parsing some sentences from newer receivers.

In NMEA0183 ver 2.3 and later, VTG sentences have their checksum in the 10th field, with a FAA mode indicator in field 9.

The following line: https://github.com/SammyB428/NMEA0183/blob/aacd564cd0996808072bde381ce8f1e14c49b044/VTG.CPP#L69 still assumes the checksum is in field 9 so will fail to parse VTG sentences ver 2.3 and above.

I've only encountered this with VTG sentences, but there may be other sentences with changes.

SivertHavso avatar Feb 03 '22 13:02 SivertHavso