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
nel_h2
Gen AI apps are built with MongoDB Atlas
MongoDB Atlas is the developer-friendly database used to build, scale, and run gen AI and LLM-powered apps—without needing a separate vector database. Atlas offers built-in vector search, global availability across 115+ regions, and flexible document modeling. Start building AI apps faster, all in one place.
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.