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/

Revision:
0:3407bd06cfae
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/types.h	Fri Jan 22 08:42:46 2016 +0000
@@ -0,0 +1,7 @@
+#ifndef __TYPES_H
+#define __TYPES_H
+
+typedef char byte;
+typedef int millis;
+
+#endif
\ No newline at end of file