libnmea icon indicating copy to clipboard operation
libnmea copied to clipboard

Lightweight C library for parsing NMEA 0183 sentences

Results 18 libnmea issues
Sort by recently updated
recently updated
newest added

## My problem Since i have all the nmea sentences in a .txt file, one sentence in a row, the escape chars are not in plain text, so the sentence...

When I do: `make && make check` i get this error message: ``` Building build/libnmea.so gcc -shared -fvisibility=hidden -Wl,--exclude-libs=ALL,--no-as-needed,-soname,libnmea.so -Wall -g -ldl src/nmea/nmea.o src/nmea/parser.o -o build/libnmea.so ld: unknown option: --exclude-libs=ALL...

libnmea build error was added by https://github.com/jacketizer/libnmea/pull/46 😔 Since src/parsers directory wasn't in include path, it leads to the following error while compiling libnmea: ``` src/parsers/gpgga.h:7:10: fatal error: nmea.h: No...

Hardcoded libpaths do not jive well with various environments. Please use CMake standard install definitions and methods for installing properly. Consider providing a pkg-config file for a shared library.

Release version for build environments. Some users prefer a release version number, properly stashed as a tarball, over a git hash or tag/branch.

I've ran into this more than a few times already during development, that when NMEA_PARSER_PATH is not set correctly, no modules are loaded. In this situation, parsing of any NMEA...

In order to support non GPS talkers such as GLONASS (Russia), Galileo (Europe), I fixed to check only sentence ID such as GGA, RMC, etc.

I am a coding novice. Please add a parser for $GPZDA. I am building a precision GPS Clock using an U-Blox NEO-M8N GPS Clone on a PIC18F4550 MCU with a...

I encountered an odd thing with a GPRMC sentence coming from an APX15. The time stamp was formatted as a floating point and had trailing zeros. Thought it would be...