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
Orchestrate Your AI Agents with Zenflow
Zenflow orchestrates AI agents like a real engineering system. With parallel execution, spec-driven workflows, and deep multi-repo understanding, agents plan, implement, test, and verify end-to-end. Upgrade to AI workflows that work the way your team does.
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.