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();
...

History

Removed prototyping code that broke gps data validation default tip

2011-04-28, by shimniok [Thu, 28 Apr 2011 15:24:13 +0000] rev 1

Removed prototyping code that broke gps data validation


Initial release

2011-04-27, by shimniok [Wed, 27 Apr 2011 19:21:28 +0000] rev 0

Initial release