Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
GPS.h
- Committer:
- mikawataru
- Date:
- 2017-07-14
- Revision:
- 0:8c134f1c71f2
- Child:
- 1:8425c3fba1c3
File content as of revision 0:8c134f1c71f2:
#ifndef GPS_H
#define GPS_H
#include "mbed.h"
class GPS{
private:
Serial gps;
char gps_data[256];
int cnt_gps;
public:
Serial *debug;
GPS(PinName tx, PinName rx) : gps(tx,rx){
gps.baud(9600);
};
void getGPS();
void LogStart(PinName tx, PinName rx);
float calcLatitude(float raw_data);
float calcLongitude(float raw_data);
};
#endif