test ver (get more data from GPS)

Dependents:   sample_GPS_GYSFDMAXB_edite_by_asha GPSDRV8833CanSat

getGPS.h

Committer:
CanSat_C
Date:
2018-07-07
Revision:
0:030ffb18f36d
Child:
2:4a3a10bc7309

File content as of revision 0:030ffb18f36d:

#ifndef GPS_H
#define GPS_H

#define GPSBAUD 9600 //ボーレート

class GPS {
public:
    GPS(PinName gpstx,PinName gpsrx);
    
    bool getgps();

    double longitude;
    double latitude;
    
private:
    Serial _gps;
};
 
#endif //GPS_H