-
Notifications
You must be signed in to change notification settings - Fork 7
/
Gps.cpp
369 lines (336 loc) · 10.7 KB
/
Gps.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
/*
* Copyright 2010,2011,2012,2013 Robert Huitema robert@42.co.nz
*
* This file is part of FreeBoard. (http://www.42.co.nz/freeboard)
*
* FreeBoard is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* FreeBoard is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with FreeBoard. If not, see <http://www.gnu.org/licenses/>.
*/
#include "Gps.h"
char gpsBuffer[40];
PString gpsStr(gpsBuffer, sizeof(gpsBuffer));
Gps::~Gps() {
}
Gps::Gps(NMEA* gpsSource, FreeBoardModel* model) {
this->model = model;
this->gpsSource = gpsSource;
//setupGps();
}
bool Gps::testMsg() {
//clear buffer of rubbish
int x = 0;
while (x < 100) {
if (Serial1.available()) {
Serial1.read();
x++;
}
}
//5 secs
unsigned long now = millis();
bool valid = true;
bool nmea = false;
while (now + 5000 > millis() && valid && !nmea) {
if (Serial1.available()) {
int c = Serial1.read();
//Serial.print(c);
//Serial.print(",");
//not Cntrl-n or printable so invalid
if (c > 126) {
valid = false;
break;
}
//we should see if its got a $ sign (ASCII 36)
if (valid && c == 36) nmea = true;
}
}
if (DEBUG) {
if (valid)
Serial.println(F("OK"));
else
Serial.println(F("FAIL"));
}
return (valid && nmea);
}
long Gps::detectRate(int rcvPin) // function to return valid received baud rate
// Note that the serial monitor has no 600 baud option and 300 baud
// doesn't seem to work with version 22 hardware serial library
{
long rate = 10000, x=2000;
pinMode(rcvPin, INPUT); // make sure serial in is a input pin
digitalWrite (rcvPin, HIGH); // pull up enabled just for noise protection
for (int i = 0; i < 5; i++) {
x = pulseIn(rcvPin,LOW, 125000); // measure the next zero bit width
if(x<1)continue;
rate = x < rate ? x : rate;
}
if(DEBUG){
Serial.print(F(" detected pulse rate = "));
Serial.println(rate);
}
return rate;
}
long Gps::autoBaud() {
//try the various baud rates until one makes sense
//should only output simple NMEA [$A-Z0-9*\r\c]
//start with saved default
Serial.print(F(" try autobaud .. "));
long rate = detectRate(GPS_RX_PIN)+detectRate(GPS_RX_PIN)+detectRate(GPS_RX_PIN);
rate = rate/3l;
long baud = 0;
/*
Time Baud Rate
3333µs (3.3ms)300
833µs 1200
416µs 2400
208µs 4800
104µs 9600
69µs 14400
52µs 19200
34µs 28800
26µs 38400
17.3µs 57600
8µs 115200
Megas min is about 10uS? so there may be some inaccuracy
*/
if (rate < 12)
baud = 115200;
else if (rate < 20)
baud = 57600;
else if (rate < 30)
baud = 38400;
else if (rate < 40)
baud = 28800;
else if (rate < 60)
baud = 19200;
else if (rate < 80)
baud = 14400;
else if (rate < 150)
baud = 9600;
else if (rate < 300)
baud = 4800;
else if (rate < 600)
baud = 2400;
else if (rate < 1200)
baud = 1200;
else
baud = 0;
if(baud>0){
Serial.print(F("OK at "));
Serial.println(baud);
return baud;
}else{
Serial.print(F("FAILED"));
}
if (DEBUG) Serial.println(F(" default to 4800.."));
return 4800;
}
//bool Gps::getGpsDecode() {
// return gpsDecode;
//}
/*
Set baud rate and various message frequencies.
*/
void Gps::setupGps() {
/*
Value Description
0 GGA Fix information
1 GLL Lat/Lon data
2 GSA Overall Satellite data
3 GSV Detailed Satellite data
4 RMC Recommended minimum info
5 VTG Vector track an Speed over the Ground
6 MSS (If internal beacon is supported)
7 Not defined
8 ZDA (if 1PPS output is supported)
9 Not defined
*/
long baud = autoBaud();
model->setSerialBaud1(baud);
model->saveConfig();
Serial1.begin(baud);
setupGpsImpl();
//now flush and restart
Serial1.flush();
Serial1.end();
Serial1.begin(model->getSerialBaud1(), SERIAL_8N1);
//Serial1.begin(38400, SERIAL_8N1);
}
float Gps::getMetersTo(float targetLat, float targetLon, float currentLat, float currentLon) {
// returns distance in meters between two positions, both specified
// as signed decimal-degrees latitude and longitude. Uses great-circle
// distance computation for hypothised sphere of radius 6372795 meters.
// Because Earth is no exact sphere, rounding errors may be upto 0.5%.
float delta = radians(targetLon - currentLon);
float sdlong = sin(delta);
float cdlong = cos(delta);
targetLat = radians(targetLat);
currentLat = radians(currentLat);
float slat1 = sin(targetLat);
float clat1 = cos(targetLat);
float slat2 = sin(currentLat);
float clat2 = cos(currentLat);
delta = (clat1 * slat2) - (slat1 * clat2 * cdlong);
delta = sq(delta);
delta += sq(clat2 * sdlong);
delta = sqrt(delta);
float denom = (slat1 * slat2) + (clat1 * clat2 * cdlong);
delta = atan2(delta, denom);
return delta * 6372795 * MTR;
}
bool Gps::decode(byte inByte) {
// check if the character completes a valid GPS sentence
model->setGpsDecode(gpsSource->decode(inByte));
//if(DEBUG)
//Serial.println(inByte);
if (model->isGpsDecode()) {
model->setGpsStatus(gpsSource->gprmc_status());
if (gpsSource->gprmc_status() == 'A' && gpsSource->term(0)[2] != 'R' && gpsSource->term(0)[3] != 'M' && gpsSource->term(0)[4] != 'C') {
model->setGpsLastFix(millis());
model->setGpsCourse(gpsSource->gprmc_course());
model->setGpsLatitude(gpsSource->gprmc_latitude());
model->setGpsLongitude(gpsSource->gprmc_longitude());
model->setGpsSpeed(gpsSource->gprmc_speed(model->getGpsSpeedUnit()));
model->setGpsUtc(gpsSource->gprmc_utc());
}
}
return model->isGpsDecode();
}
/*
Reset the GPS to factory defaults
void Gps::resetGPS() {
//set debug on
Serial1.println("$PSRF105,1*3E");
//factory reset
//$PSRF101,0,0,0,0,0,0,12,8*1C
Serial1.println("$PSRF101,0,0,0,0,0,0,12,8*1C");
while (Serial1.available() > 0) {
Serial.print(Serial1.read());
}
//debug off
Serial1.println("$PSRF105,0*3F");
}*/
PString Gps::getLatString(float lat, int decimals, int padding, PString str) {
str.begin();
if (lat >= 0.0) {
str.print(F("N"));
str.print(lat, 4);
str.print(F(" "));
} else {
str.print(F("S"));
float plusLat = 0 - lat;
str.print(plusLat, 4);
str.print(F(" "));
}
//float absLat = abs(lat);
//char * rslt = padFloat(absLat,decimals,padding);
//str.print(rslt);
return str;
}
PString Gps::getLonString(float lon, int decimals, int padding, PString str) {
str.begin();
if (lon >= 0) {
str.print(F("E"));
str.print(lon, 4);
str.print(F(" "));
} else {
str.print(F("W"));
float plusLon = 0 - lon;
str.print(plusLon, 4);
str.print(F(" "));
}
// float absLon = abs(lon);
//char * rslt = padFloat(absLon,decimals,padding);
//str.print(printFloat(abs(lon),decimals));
return str;
}
/*
* setup implementations for various models of GPS.
* Define the GPS in GPS.h
*/
void Gps::setupGpsImpl(){
//setup based on GPS type - probably wants a more modular way if many GPS types appear
Serial.println(F("Setting GPS config..." ));
if(GPS_GENERIC == model->getGpsModel()){
Serial.println(F("Setting GPS to GENERIC" ));
}
if(GPS_EM_406A == model->getGpsModel()){
Serial.println(F("Setting GPS to EM_406A" ));
//Serial1.begin(38400, 8, 1, 0); //gps
//set debug on
Serial1.println(F("$PSRF105,1*3E"));
//set VTG off - Vector track an Speed over the Ground
Serial1.println(F("$PSRF103,05,00,00,01*21"));
//set GLL off - Lat/Lon data
Serial1.println(F("$PSRF103,01,00,00,01*25"));
//set GGA on, 5sec, constant - Fix information
Serial1.println(F("$PSRF103,00,00,05,01*21"));
//set GSA on, 5 sec, constant - Overall Satellite data
Serial1.println(F("$PSRF103,02,00,05,01*23"));
//set GSV on, 20sec, constant -Detailed Satellite data
Serial1.println(F("$PSRF103,03,00,20,01*25"));
//set RMC on, 1sec, constant, Recommended minimum info
Serial1.println(F("$PSRF103,04,00,01,01*21"));
//debug off
Serial1.println(F("$PSRF105,0*3F"));
//set baud faster ?
//GPS SIRF configuration strings...
//#define SIRF_BAUD_RATE_4800 "$PSRF100,1,4800,8,1,0*0E\r\n"
//#define SIRF_BAUD_RATE_9600 "$PSRF100,1,9600,8,1,0*0D\r\n"
//#define SIRF_BAUD_RATE_19200 "$PSRF100,1,19200,8,1,0*38\r\n"
//#define SIRF_BAUD_RATE_38400 "$PSRF100,1,38400,8,1,0*3D\r\n"
//#define SIRF_BAUD_RATE_57600 "$PSRF100,1,57600,8,1,0*36\r\n"
//$PSRF100,1,38400,8,1,0*3D\r\n
char gpsSentence [30];
PString str(gpsSentence, sizeof(gpsSentence));
str.print(F("$PSRF100,1,"));
str.print(model->getSerialBaud1());
str.print(F(",8,1,0*"));
//calculate the checksum
byte cs = getChecksum(gpsSentence); //clear any old checksum
//bug - arduino prints 0x007 as 7, 0x02B as 2B, so we add it now
if (cs < 0x10) str.print('0');
str.print(cs, HEX); // Assemble the final message and send it out the serial port
Serial1.println(gpsSentence);
//Serial1.println("$PSRF100,1,38400,8,1,0*3D");
Serial.println(gpsSentence);
}
if(GPS_MTEK_3329 == model->getGpsModel()){
Serial.println(F("Setting GPS to MTEK_3329") );
//setting update rate to 1Hz
Serial1.println(F("$PMTK220,1000*1F"));
//setting the NMEA Output to get RMC, GGA, GSA & GSV.
Serial1.println(F("$PMTK314,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0*28"));
/*
-Change unit refresh rate:
$PMTK220,100*2F //Will set the GPS to 10hz (or updates every 100 milliseconds)
$PMTK220,250*29 //Will set the GPS to 4hz (or updates every 250 milliseconds)
$PMTK220,1000*1F //Will set the GPS to 1hz (updates every 1000 milliseconds)
You can set the GPS to any desired refresh rate, you change the value inside the string and generate a new check sum here: http://www.hhhh.org/wiml/proj/nmeaxor.html
-To change the baud rates:
$PMTK251,4800*14
$PMTK251,9600*17
$PMTK251,19200*22
$PMTK251,38400*27
You can also set the GPS to any desired baud rate speed by changing the value inside the string and generate a new checksum here: http://www.hhhh.org/wiml/proj/nmeaxor.html
*/
char gpsSentence [30];
PString str(gpsSentence, sizeof(gpsSentence));
str.print(F("$PMTK251,"));
str.print(model->getSerialBaud1());
str.print("*");
//calculate the checksum
byte cs = getChecksum(gpsSentence); //clear any old checksum
//bug - arduino prints 0x007 as 7, 0x02B as 2B, so we add it now
if (cs < 0x10) str.print('0');
str.print(cs, HEX); // Assemble the final message and send it out the serial port
Serial1.println(gpsSentence);
}
}