├── .gitignore ├── Makefile ├── README ├── avr-tmpl.mk ├── config.h ├── nav_structs.h ├── nmea.c ├── nmea.h ├── nmea_structs.h ├── optical.c ├── optical.h ├── optical_structs.h ├── sonar.c ├── sonar.h ├── sonar_structs.h ├── tiny-gps.c ├── usiTwiSlave.c └── usiTwiSlave.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertarbyte/tiny-gps/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertarbyte/tiny-gps/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertarbyte/tiny-gps/HEAD/README -------------------------------------------------------------------------------- /avr-tmpl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertarbyte/tiny-gps/HEAD/avr-tmpl.mk -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertarbyte/tiny-gps/HEAD/config.h -------------------------------------------------------------------------------- /nav_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertarbyte/tiny-gps/HEAD/nav_structs.h -------------------------------------------------------------------------------- /nmea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertarbyte/tiny-gps/HEAD/nmea.c -------------------------------------------------------------------------------- /nmea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertarbyte/tiny-gps/HEAD/nmea.h -------------------------------------------------------------------------------- /nmea_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertarbyte/tiny-gps/HEAD/nmea_structs.h -------------------------------------------------------------------------------- /optical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertarbyte/tiny-gps/HEAD/optical.c -------------------------------------------------------------------------------- /optical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertarbyte/tiny-gps/HEAD/optical.h -------------------------------------------------------------------------------- /optical_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertarbyte/tiny-gps/HEAD/optical_structs.h -------------------------------------------------------------------------------- /sonar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertarbyte/tiny-gps/HEAD/sonar.c -------------------------------------------------------------------------------- /sonar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertarbyte/tiny-gps/HEAD/sonar.h -------------------------------------------------------------------------------- /sonar_structs.h: -------------------------------------------------------------------------------- 1 | struct sonar_data_t { 2 | int16_t distance; 3 | }; 4 | -------------------------------------------------------------------------------- /tiny-gps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertarbyte/tiny-gps/HEAD/tiny-gps.c -------------------------------------------------------------------------------- /usiTwiSlave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertarbyte/tiny-gps/HEAD/usiTwiSlave.c -------------------------------------------------------------------------------- /usiTwiSlave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wertarbyte/tiny-gps/HEAD/usiTwiSlave.h --------------------------------------------------------------------------------