GPS/NMEA Parser that has been ported from Arduino to mbed tested with BufferedSerial original from here : http://arduiniana.org/libraries/tinygpsplus/

Dependents:   WNC_Pubnub_obd2b_ign_em506SoftSerial_RESETFE2 mbed_xbeetest

A Full-featured GPS/NMEA Parser that has been tested with BufferedSerial

TinyGPS++ is a library for parsing NMEA data streams provided by GPS modules. Like its predecessor, TinyGPS, this library provides compact and easy-to-use methods for extracting position, date, time, altitude, speed, and course from consumer GPS devices. However, TinyGPS++’s programmer interface is considerably simpler to use than TinyGPS,

The library can extract arbitrary data from any of the myriad NMEA sentences out there, even proprietary ones

from here : http://arduiniana.org/libraries/tinygpsplus/

Committer:
Sir_Binky
Date:
Fri Jan 22 13:30:33 2016 +0000
Revision:
1:9163a9f5fc36
Parent:
0:3407bd06cfae
added a "Binary" version of the lat and lng; Binary representation of the double;

Who changed what in which revision?

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