a program i made a while back to log gps/accelerometer data

Dependencies:   FatFileSystem mbed

Committer:
Xach
Date:
Sat Sep 08 20:40:58 2012 +0000
Revision:
0:82a02991476c
a program i made a while back to log gps/accelerometer data

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Xach 0:82a02991476c 1 #pragma once
Xach 0:82a02991476c 2 #ifndef GPS_LS20031_H
Xach 0:82a02991476c 3 #define GPS_LS20031_H
Xach 0:82a02991476c 4
Xach 0:82a02991476c 5 bool NMEA_parse(char* msg);
Xach 0:82a02991476c 6 char checkSum(char* theseChars);
Xach 0:82a02991476c 7 float date;
Xach 0:82a02991476c 8 float latitude;
Xach 0:82a02991476c 9 float longitude;
Xach 0:82a02991476c 10 float speed_knotts;
Xach 0:82a02991476c 11 float timeG;
Xach 0:82a02991476c 12
Xach 0:82a02991476c 13 #endif