Needs some work

Dependencies:   mbed

Committer:
markco24
Date:
Wed Mar 10 21:57:44 2010 +0000
Revision:
0:0ec25826c208

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
markco24 0:0ec25826c208 1 #include "mbed.h"
markco24 0:0ec25826c208 2 #include "gps.h"
markco24 0:0ec25826c208 3 #include "data.h"
markco24 0:0ec25826c208 4
markco24 0:0ec25826c208 5 int main() {
markco24 0:0ec25826c208 6 lcd.printf("Device Starting.");
markco24 0:0ec25826c208 7 pc.baud(921600);
markco24 0:0ec25826c208 8 gps.baud(38400);
markco24 0:0ec25826c208 9
markco24 0:0ec25826c208 10 pc.printf("\033[2J");
markco24 0:0ec25826c208 11
markco24 0:0ec25826c208 12 wait(0.25);
markco24 0:0ec25826c208 13 while(1) {
markco24 0:0ec25826c208 14 getGPSstring(1);
markco24 0:0ec25826c208 15 }
markco24 0:0ec25826c208 16 }