Mark x / Mbed 2 deprecated GPS_Test

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 #include "gps.h"
00003 #include "data.h"
00004 
00005 int main() {
00006     lcd.printf("Device Starting.");
00007     pc.baud(921600);
00008     gps.baud(38400);
00009 
00010     pc.printf("\033[2J");
00011 
00012     wait(0.25);
00013     while(1) {
00014         getGPSstring(1);
00015     }
00016 }