C++ parser for most important NMEA sentences, including GGA, RMC, GSA, and many others.
Categories
Data FormatsLicense
GNU General Public License version 2.0 (GPLv2)Follow C++ NMEA Sentence Parser
Other Useful Business Software
Our Free Plans just got better! | Auth0
You asked, we delivered! Auth0 is excited to expand our Free and Paid plans to include more options so you can focus on building, deploying, and scaling applications without having to worry about your security. Auth0 now, thank yourself later.
Rate This Project
Login To Rate This Project
User Reviews
-
This is a good utility, but there is a bug in the sentence processing. The auxbuf is sized to 10 to accomodate the longest field to process, but in the code a zero is added to the end of the string causing the buffer to overflow. This corrupted the stack. My fix was to increase the buffer size to 11 characters.