Dependents:   Lab3_Surveillance 6adcSerial

GPS.h

Committer:
keerthanasp
Date:
2011-01-21
Revision:
0:14fd31ae13bb
Child:
1:b4de63a99f18

File content as of revision 0:14fd31ae13bb:

#include "mbed.h"
#ifndef MBED_GPS_H
#define MBED_GPS_H
class GPS {
public:
    GPS(PinName tx, PinName rx);
    int sample();
    float longitude;
    float latitude;
private:
    float trunc ( float v);
    void getline();
    serial_gps;
    char msg[256];
};
#endif