Improved, thread compatible. Adds new features

Dependents:   GroveGPS-Example

Fork of GroveGPS by Michael Ray

Committer:
JimCarver
Date:
Sat Apr 14 00:03:58 2018 +0000
Revision:
1:403eb5e9e994
Parent:
0:56d6407653a7
Child:
2:073674e3f5bf
features added

Who changed what in which revision?

UserRevisionLine numberNew contents of line
michaelray 0:56d6407653a7 1 #ifndef _GROVE_GPS_H_
michaelray 0:56d6407653a7 2 #define _GROVE_GPS_H_
michaelray 0:56d6407653a7 3
michaelray 0:56d6407653a7 4 #include "mbed.h"
michaelray 0:56d6407653a7 5 #include <stdlib.h>
michaelray 0:56d6407653a7 6 #include <string>
michaelray 0:56d6407653a7 7
michaelray 0:56d6407653a7 8 class GroveGPS {
michaelray 0:56d6407653a7 9
michaelray 0:56d6407653a7 10 public:
michaelray 0:56d6407653a7 11
michaelray 0:56d6407653a7 12 GroveGPS() : _last_line("") {}
michaelray 0:56d6407653a7 13
michaelray 0:56d6407653a7 14 void readCharacter(char newCharacter) {
michaelray 0:56d6407653a7 15 if (newCharacter == '\n') {
michaelray 0:56d6407653a7 16 parseLine();
michaelray 0:56d6407653a7 17 _last_line = "";
michaelray 0:56d6407653a7 18 } else {
michaelray 0:56d6407653a7 19 _last_line += newCharacter;
michaelray 0:56d6407653a7 20 }
michaelray 0:56d6407653a7 21 }
michaelray 0:56d6407653a7 22
michaelray 0:56d6407653a7 23 struct GGA {
michaelray 0:56d6407653a7 24 double utc_time; // Format: hhmmss.sss
michaelray 0:56d6407653a7 25 double latitude; // Format: ddmm.mmmm
michaelray 0:56d6407653a7 26 char ns_indicator; // Format: N=north or S=south
michaelray 0:56d6407653a7 27 double longitude; // Format: dddmm.mmmm
michaelray 0:56d6407653a7 28 char ew_indicator; // Format: E=east or W=west
michaelray 0:56d6407653a7 29 int position_fix; // Options: [0=not available, 1=GPS SPS mode, 2=Differential GPS, 6=dead reckoning]
michaelray 0:56d6407653a7 30 int sats_used; // Range: 0-12
michaelray 0:56d6407653a7 31 double hdop; // Horizontal Dilution of Precision
michaelray 0:56d6407653a7 32 double msl_altitude;
michaelray 0:56d6407653a7 33 char msl_altitude_units;
michaelray 0:56d6407653a7 34 double geoid_separation;
michaelray 0:56d6407653a7 35 char geoid_separation_units;
michaelray 0:56d6407653a7 36 long age_of_diff;
michaelray 0:56d6407653a7 37 long diff_ref_station_id;
JimCarver 1:403eb5e9e994 38 int new_flag;
michaelray 0:56d6407653a7 39 std::string checksum;
michaelray 0:56d6407653a7 40 } gps_gga;
JimCarver 1:403eb5e9e994 41
JimCarver 1:403eb5e9e994 42 struct ZDA {
JimCarver 1:403eb5e9e994 43 double utc_time; // Format: hhmmss.sss
JimCarver 1:403eb5e9e994 44 int day;
JimCarver 1:403eb5e9e994 45 int month;
JimCarver 1:403eb5e9e994 46 int year;
JimCarver 1:403eb5e9e994 47 int new_flag;
JimCarver 1:403eb5e9e994 48 std::string checksum;
JimCarver 1:403eb5e9e994 49 } gps_zda;
michaelray 0:56d6407653a7 50
JimCarver 1:403eb5e9e994 51 struct VTG {
JimCarver 1:403eb5e9e994 52 double course1;
JimCarver 1:403eb5e9e994 53 int truec;
JimCarver 1:403eb5e9e994 54 double course2;
JimCarver 1:403eb5e9e994 55 int magnetic;
JimCarver 1:403eb5e9e994 56 double speed1;
JimCarver 1:403eb5e9e994 57 int knots;
JimCarver 1:403eb5e9e994 58 double speed2;
JimCarver 1:403eb5e9e994 59 int kmh;
JimCarver 1:403eb5e9e994 60 int new_flag;
JimCarver 1:403eb5e9e994 61 std::string checksum;
JimCarver 1:403eb5e9e994 62 } gps_vtg;
JimCarver 1:403eb5e9e994 63
JimCarver 1:403eb5e9e994 64
JimCarver 1:403eb5e9e994 65 void getAltitude(char* buffer) {
JimCarver 1:403eb5e9e994 66 if (gps_gga.position_fix==0)
JimCarver 1:403eb5e9e994 67 sprintf(buffer, "N/A");
JimCarver 1:403eb5e9e994 68 else
JimCarver 1:403eb5e9e994 69 sprintf(buffer, "%f", gps_gga.msl_altitude);
JimCarver 1:403eb5e9e994 70 }
JimCarver 1:403eb5e9e994 71
JimCarver 1:403eb5e9e994 72 void getCourse(char* buffer) {
JimCarver 1:403eb5e9e994 73 if (gps_gga.position_fix==0)
JimCarver 1:403eb5e9e994 74 sprintf(buffer, "N/A");
JimCarver 1:403eb5e9e994 75 else
JimCarver 1:403eb5e9e994 76 sprintf(buffer, "%f", gps_vtg.course1);
JimCarver 1:403eb5e9e994 77 }
JimCarver 1:403eb5e9e994 78
JimCarver 1:403eb5e9e994 79 void getSpeed(char* buffer) {
JimCarver 1:403eb5e9e994 80 if (gps_gga.position_fix==0)
JimCarver 1:403eb5e9e994 81 sprintf(buffer, "N/A");
JimCarver 1:403eb5e9e994 82 else
JimCarver 1:403eb5e9e994 83 sprintf(buffer, "%f", gps_vtg.speed1);
JimCarver 1:403eb5e9e994 84 }
JimCarver 1:403eb5e9e994 85
michaelray 0:56d6407653a7 86 void getTimestamp(char* buffer) {
JimCarver 1:403eb5e9e994 87 if (gps_gga.position_fix==0)
JimCarver 1:403eb5e9e994 88 sprintf(buffer, "N/A");
JimCarver 1:403eb5e9e994 89 else
JimCarver 1:403eb5e9e994 90 sprintf(buffer, "%f", gps_gga.utc_time);
michaelray 0:56d6407653a7 91 }
JimCarver 1:403eb5e9e994 92
michaelray 0:56d6407653a7 93 void getLatitude(char* buffer) {
michaelray 0:56d6407653a7 94 double coordinate = convertGPSToDecimal(gps_gga.latitude);
michaelray 0:56d6407653a7 95 if (gps_gga.position_fix==0)
michaelray 0:56d6407653a7 96 sprintf(buffer, "N/A");
michaelray 0:56d6407653a7 97 else
michaelray 0:56d6407653a7 98 sprintf(buffer, "%c%f", (gps_gga.ns_indicator == 'N') ? '0' : '-', coordinate);
michaelray 0:56d6407653a7 99 }
michaelray 0:56d6407653a7 100
michaelray 0:56d6407653a7 101 void getLongitude(char* buffer) {
michaelray 0:56d6407653a7 102 double coordinate = convertGPSToDecimal(gps_gga.longitude);
michaelray 0:56d6407653a7 103 if (gps_gga.position_fix==0)
michaelray 0:56d6407653a7 104 sprintf(buffer, "N/A");
michaelray 0:56d6407653a7 105 else
michaelray 0:56d6407653a7 106 sprintf(buffer, "%c%f", (gps_gga.ew_indicator == 'E') ? '0' : '-', coordinate);
michaelray 0:56d6407653a7 107 }
michaelray 0:56d6407653a7 108
michaelray 0:56d6407653a7 109 private:
michaelray 0:56d6407653a7 110 std::string _last_line;
michaelray 0:56d6407653a7 111
JimCarver 1:403eb5e9e994 112
michaelray 0:56d6407653a7 113 double convertGPSToDecimal(double coordinate) {
michaelray 0:56d6407653a7 114 int degrees = coordinate/100.0;
michaelray 0:56d6407653a7 115 int minutes = ((int)coordinate) % 100;
michaelray 0:56d6407653a7 116 double seconds = coordinate - ((int)coordinate);
michaelray 0:56d6407653a7 117 return degrees + (minutes+seconds)/60;
michaelray 0:56d6407653a7 118
michaelray 0:56d6407653a7 119 }
michaelray 0:56d6407653a7 120
michaelray 0:56d6407653a7 121 void parseLine() {
michaelray 0:56d6407653a7 122 if (_last_line.find("GPGGA") != std::string::npos) {
michaelray 0:56d6407653a7 123 parseGGA();
michaelray 0:56d6407653a7 124 }
JimCarver 1:403eb5e9e994 125 if (_last_line.find("GPZDA") != std::string::npos) {
JimCarver 1:403eb5e9e994 126 parseZDA();
JimCarver 1:403eb5e9e994 127 }
JimCarver 1:403eb5e9e994 128 if (_last_line.find("GPVTG") != std::string::npos) {
JimCarver 1:403eb5e9e994 129 parseVTG();
JimCarver 1:403eb5e9e994 130 }
JimCarver 1:403eb5e9e994 131 }
JimCarver 1:403eb5e9e994 132
JimCarver 1:403eb5e9e994 133 void parseVTG() {
JimCarver 1:403eb5e9e994 134 char* pEnd;
JimCarver 1:403eb5e9e994 135 for (int i=0; i<5; i++) {
JimCarver 1:403eb5e9e994 136 std::string current_item = _last_line.substr(0,_last_line.find(","));
JimCarver 1:403eb5e9e994 137 _last_line = _last_line.substr(_last_line.find(",")+1);
JimCarver 1:403eb5e9e994 138 if (i==0) { // NMEA Tag
JimCarver 1:403eb5e9e994 139 } else if (i==1) { // UTC time
JimCarver 1:403eb5e9e994 140 gps_vtg.course1 = strtod(current_item.c_str(), &pEnd);
JimCarver 1:403eb5e9e994 141 } else if (i==3) {
JimCarver 1:403eb5e9e994 142 gps_vtg.course2 = strtod(current_item.c_str(), &pEnd);
JimCarver 1:403eb5e9e994 143 } else if (i==5) {
JimCarver 1:403eb5e9e994 144 gps_vtg.speed1 = strtod(current_item.c_str(), &pEnd);
JimCarver 1:403eb5e9e994 145 } else if (i==7) {
JimCarver 1:403eb5e9e994 146 gps_vtg.speed2 = strtod(current_item.c_str(), &pEnd);
JimCarver 1:403eb5e9e994 147 }
JimCarver 1:403eb5e9e994 148 }
JimCarver 1:403eb5e9e994 149 gps_vtg.new_flag = 1;
JimCarver 1:403eb5e9e994 150 }
JimCarver 1:403eb5e9e994 151
JimCarver 1:403eb5e9e994 152 void parseZDA() {
JimCarver 1:403eb5e9e994 153 char* pEnd;
JimCarver 1:403eb5e9e994 154 for (int i=0; i<5; i++) {
JimCarver 1:403eb5e9e994 155 std::string current_item = _last_line.substr(0,_last_line.find(","));
JimCarver 1:403eb5e9e994 156 _last_line = _last_line.substr(_last_line.find(",")+1);
JimCarver 1:403eb5e9e994 157 if (i==0) { // NMEA Tag
JimCarver 1:403eb5e9e994 158 } else if (i==1) { // UTC time
JimCarver 1:403eb5e9e994 159 gps_zda.utc_time = strtod(current_item.c_str(), &pEnd);
JimCarver 1:403eb5e9e994 160 } else if (i==2) {
JimCarver 1:403eb5e9e994 161 gps_zda.day = strtod(current_item.c_str(), &pEnd);
JimCarver 1:403eb5e9e994 162 } else if (i==3) {
JimCarver 1:403eb5e9e994 163 gps_zda.month = strtod(current_item.c_str(), &pEnd);
JimCarver 1:403eb5e9e994 164 } else if (i==4) {
JimCarver 1:403eb5e9e994 165 gps_zda.year = strtod(current_item.c_str(), &pEnd);
JimCarver 1:403eb5e9e994 166 }
JimCarver 1:403eb5e9e994 167 }
JimCarver 1:403eb5e9e994 168 gps_zda.new_flag = 1;
michaelray 0:56d6407653a7 169 }
michaelray 0:56d6407653a7 170
michaelray 0:56d6407653a7 171 void parseGGA() {
michaelray 0:56d6407653a7 172 char* pEnd;
michaelray 0:56d6407653a7 173 for (int i=0; i<14; i++) {
michaelray 0:56d6407653a7 174 std::string current_item = _last_line.substr(0,_last_line.find(","));
michaelray 0:56d6407653a7 175 _last_line = _last_line.substr(_last_line.find(",")+1);
michaelray 0:56d6407653a7 176 if (i==0) { // NMEA Tag
michaelray 0:56d6407653a7 177 } else if (i==1) { // UTC time
michaelray 0:56d6407653a7 178 gps_gga.utc_time = strtod(current_item.c_str(), &pEnd);
michaelray 0:56d6407653a7 179 } else if (i==2) { // Latitude
michaelray 0:56d6407653a7 180 gps_gga.latitude = strtod(current_item.c_str(), &pEnd);
michaelray 0:56d6407653a7 181 } else if (i==3) { // Latitude North/South indicator
michaelray 0:56d6407653a7 182 gps_gga.ns_indicator = current_item[0];
michaelray 0:56d6407653a7 183 } else if (i==4) { // Longitude
michaelray 0:56d6407653a7 184 gps_gga.longitude = strtod(current_item.c_str(), &pEnd);
michaelray 0:56d6407653a7 185 } else if (i==5) { // Longitude indicator
michaelray 0:56d6407653a7 186 gps_gga.ew_indicator = current_item[0];
michaelray 0:56d6407653a7 187 } else if (i==6) {
michaelray 0:56d6407653a7 188 gps_gga.position_fix = strtod(current_item.c_str(), &pEnd);
JimCarver 1:403eb5e9e994 189 }else if (i==7) {
JimCarver 1:403eb5e9e994 190 gps_gga.sats_used = strtod(current_item.c_str(), &pEnd);
JimCarver 1:403eb5e9e994 191 } else if (i==8) {
JimCarver 1:403eb5e9e994 192 gps_gga.hdop = strtod(current_item.c_str(), &pEnd);
JimCarver 1:403eb5e9e994 193 } else if (i==9) {
JimCarver 1:403eb5e9e994 194 gps_gga.msl_altitude = strtod(current_item.c_str(), &pEnd);
michaelray 0:56d6407653a7 195 }
michaelray 0:56d6407653a7 196 }
JimCarver 1:403eb5e9e994 197 gps_gga.new_flag = 1;
michaelray 0:56d6407653a7 198 }
JimCarver 1:403eb5e9e994 199
michaelray 0:56d6407653a7 200 };
michaelray 0:56d6407653a7 201
michaelray 0:56d6407653a7 202 #endif