├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── examples ├── Makefile └── position_logger.c ├── src ├── Makefile ├── gps.c ├── gps.h ├── nmea.c ├── nmea.h ├── serial.c └── serial.h └── tests ├── Makefile ├── all_tests.c ├── gps_test.c ├── helpers.c ├── helpers.h ├── nmea_test.c └── serial_test.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | *.o 3 | *.a 4 | build 5 | *~ 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdalmut/libgps/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdalmut/libgps/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdalmut/libgps/HEAD/README.md -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdalmut/libgps/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/position_logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdalmut/libgps/HEAD/examples/position_logger.c -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdalmut/libgps/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/gps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdalmut/libgps/HEAD/src/gps.c -------------------------------------------------------------------------------- /src/gps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdalmut/libgps/HEAD/src/gps.h -------------------------------------------------------------------------------- /src/nmea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdalmut/libgps/HEAD/src/nmea.c -------------------------------------------------------------------------------- /src/nmea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdalmut/libgps/HEAD/src/nmea.h -------------------------------------------------------------------------------- /src/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdalmut/libgps/HEAD/src/serial.c -------------------------------------------------------------------------------- /src/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdalmut/libgps/HEAD/src/serial.h -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdalmut/libgps/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/all_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdalmut/libgps/HEAD/tests/all_tests.c -------------------------------------------------------------------------------- /tests/gps_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdalmut/libgps/HEAD/tests/gps_test.c -------------------------------------------------------------------------------- /tests/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdalmut/libgps/HEAD/tests/helpers.c -------------------------------------------------------------------------------- /tests/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdalmut/libgps/HEAD/tests/helpers.h -------------------------------------------------------------------------------- /tests/nmea_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdalmut/libgps/HEAD/tests/nmea_test.c -------------------------------------------------------------------------------- /tests/serial_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdalmut/libgps/HEAD/tests/serial_test.c --------------------------------------------------------------------------------