Port of Arduino TinyGPS library to mbed. Added extra methods to flag receipt/parsing of particular sentences.

Dependents:   Atlas gps_com QuadCopter Quadcopter_mk2 ... more

Port of TinyGPS (from Arduino) to mbed.

Errata: it's been pointed out to me that this version calls an undeclared millis() function. To get this code working in your project, you'll want to set up a Timer object and then call timer.read_ms() ala:

example to replace millis() calls

Timer timer;
...
timer.start();
timer.reset();
...
//x = millis();
x = timer.read_ms();
...
Committer:
shimniok
Date:
Thu Apr 28 15:24:13 2011 +0000
Revision:
1:f522b8bdf987
Parent:
0:8a347288f82c
Removed prototyping code that broke gps data validation

Who changed what in which revision?

UserRevisionLine numberNew contents of line
shimniok 0:8a347288f82c 1 #ifndef __TYPES_H
shimniok 0:8a347288f82c 2 #define __TYPES_H
shimniok 0:8a347288f82c 3
shimniok 0:8a347288f82c 4 typedef char byte;
shimniok 0:8a347288f82c 5 typedef int millis;
shimniok 0:8a347288f82c 6
shimniok 0:8a347288f82c 7 #endif