Allows for a GPS module to be connected to a serial port and exposes an easy to use API to get the GPS data. New feature, added Mbed/LPC17xx RTC synchronisation

Dependents:   SatGPS AntiTheftGPS FLIGHT_CONTROL_AND_COMMUNICATIONS_SYSTEM GPS-Lora ... more

Committer:
AjK
Date:
Thu Apr 21 14:06:17 2011 +0000
Revision:
6:64771e31464e
Parent:
3:28a1b60b0f37
1.16 See ChangeLog.c

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AjK 3:28a1b60b0f37 1 /*
AjK 3:28a1b60b0f37 2
AjK 3:28a1b60b0f37 3 Typical NMEA sentences from my GPS module.
AjK 3:28a1b60b0f37 4
AjK 3:28a1b60b0f37 5 $GPGGA,075851.891,5611.5305,N,00302.0369,W,0,00,4.8,44.0,M,52.0,M,,0000*77
AjK 3:28a1b60b0f37 6 $GPGSA,A,1,,,,,,,,,,,,,4.8,4.8,0.7*37
AjK 3:28a1b60b0f37 7 $GPGSV,3,1,12,20,82,116,,01,79,246,,32,54,077,,17,48,254,*70
AjK 3:28a1b60b0f37 8 $GPGSV,3,2,12,23,46,168,,24,40,128,,04,25,295,,11,24,143,*73
AjK 3:28a1b60b0f37 9 $GPGSV,3,3,12,31,22,065,,13,15,190,,12,11,343,,25,00,019,*7D
AjK 3:28a1b60b0f37 10 $GPRMC,075851.891,V,5611.5305,N,00302.0369,W,002.2,252.9,160411,,,N*68
AjK 3:28a1b60b0f37 11 $GPVTG,252.9,T,,M,002.2,N,004.1,K,N*0B
AjK 3:28a1b60b0f37 12
AjK 3:28a1b60b0f37 13 */