Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: MTK3339 TextLCD mbed tsi_sensor
Fork of app_gps by
main.cpp
- Committer:
- embeddedartists
- Date:
- 2013-11-07
- Revision:
- 0:828a0c36c3e2
- Child:
- 1:80d31bcee0e5
File content as of revision 0:828a0c36c3e2:
#include "mbed.h"
#include "MTK3339.h"
static int waitData = 0;
static MTK3339 gps(P4_22, P4_23);
static void dataAvailable() {
waitData |= gps.getAvailableDataType();
}
int main(void) {
gps.start(&dataAvailable, (MTK3339::NmeaGga|MTK3339::NmeaVtg));
while(1) {
while(waitData == 0);
if ((waitData & MTK3339::NmeaGga) != 0) {
waitData &= ~(MTK3339::NmeaGga);
printf("gpa: fix=%d, sats=%d, alt=%f, lat=%f, lon=%f\n",
gps.gga.fix, gps.gga.satellites, gps.gga.altitude,
gps.getLatitudeAsDegrees(), gps.getLongitudeAsDegrees());
}
if ((waitData & MTK3339::NmeaVtg) != 0) {
waitData &= ~(MTK3339::NmeaVtg);
printf("vtg: course=%f, speed=%f km/h, mode=%c\n",
gps.vtg.course, gps.vtg.speedKmHour, gps.vtg.mode);
}
waitData &= (MTK3339::NmeaGga|MTK3339::NmeaVtg);
}
}
