Final version of GPS library. Still may require some debugging regarding integer formatting, but it will be easiest to do this from an external program that is grabbing the values (the time and lat/long values in particular should be tested).
GPS.h
- Committer:
- dhawkes
- Date:
- 2015-10-17
- Revision:
- 1:868c31bace68
- Parent:
- 0:8d2eedbb4c6f
File content as of revision 1:868c31bace68:
#include "mbed.h" #include "MODSERIAL.h" #include <string> double getInitialTime(); int32_t getTime(); int16_t getMiliseconds(); int32_t* getGPSData(); int32_t getLatitude(); int32_t getLongitude(); int32_t getGPSQuality(); int32_t getSatellitesUsed(); int32_t getAltitude(); int32_t getCourse(); int32_t getSpeed(); bool updateValues();