2 * Copyright © 2009 Keith Packard <keithp@keithp.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
23 #ifndef ao_gps_getchar
24 #define ao_gps_getchar ao_serial1_getchar
25 #define ao_gps_fifo ao_serial1_rx_fifo
28 #ifndef ao_gps_putchar
29 #define ao_gps_putchar ao_serial1_putchar
32 #ifndef ao_gps_set_speed
33 #define ao_gps_set_speed ao_serial1_set_speed
38 static char ao_gps_char;
39 static uint8_t ao_gps_cksum;
40 static uint8_t ao_gps_error;
42 AO_TICK_TYPE ao_gps_tick;
43 AO_TICK_TYPE ao_gps_utc_tick;
44 struct ao_telemetry_location ao_gps_data;
45 struct ao_telemetry_satellite ao_gps_tracking_data;
47 static AO_TICK_TYPE ao_gps_next_tick;
48 static struct ao_telemetry_location ao_gps_next;
49 static uint8_t ao_gps_date_flags;
50 static struct ao_telemetry_satellite ao_gps_tracking_next;
52 #define STQ_S 0xa0, 0xa1
53 #define STQ_E 0x0d, 0x0a
54 #define SKYTRAQ_MSG_2(id,a,b) \
55 STQ_S, 0, 3, id, a,b, (id^a^b), STQ_E
56 #define SKYTRAQ_MSG_3(id,a,b,c) \
57 STQ_S, 0, 4, id, a,b,c, (id^a^b^c), STQ_E
58 #define SKYTRAQ_MSG_8(id,a,b,c,d,e,f,g,h) \
59 STQ_S, 0, 9, id, a,b,c,d,e,f,g,h, (id^a^b^c^d^e^f^g^h), STQ_E
60 #define SKYTRAQ_MSG_14(id,a,b,c,d,e,f,g,h,i,j,k,l,m,n) \
61 STQ_S, 0,15, id, a,b,c,d,e,f,g,h,i,j,k,l,m,n, \
62 (id^a^b^c^d^e^f^g^h^i^j^k^l^m^n), STQ_E
64 static const uint8_t ao_gps_config[] = {
65 SKYTRAQ_MSG_8(0x08, 1, 0, 1, 0, 1, 0, 0, 0), /* configure nmea */
73 /* attributes (0 = update to sram, 1 = update flash too) */
75 SKYTRAQ_MSG_2(0x3c, 0x00, 0x00), /* configure navigation mode */
76 /* 0 = car, 1 = pedestrian */
77 /* 0 = update to sram, 1 = update sram + flash */
93 ao_gps_skip_field(void)
97 if (c == ',' || c == '*' || c == '\n')
104 ao_gps_skip_sep(void)
106 char c = ao_gps_char;
107 if (c == ',' || c == '.' || c == '*')
111 static uint8_t ao_gps_num_width;
114 ao_gps_decimal(uint8_t max_width)
120 if (ao_gps_char == '-') {
125 ao_gps_num_width = 0;
126 while (ao_gps_num_width < max_width) {
127 uint8_t c = ao_gps_char;
128 if (c < (uint8_t) '0' || (uint8_t) '9' < c)
130 v = (int16_t) (v * 10 + (uint8_t) (c - (uint8_t) '0'));
146 ao_gps_num_width = 0;
147 while (ao_gps_num_width < 2) {
148 uint8_t c = ao_gps_char;
149 if ((uint8_t) '0' <= c && c <= (uint8_t) '9')
151 else if ((uint8_t) 'A' <= c && c <= (uint8_t) 'F')
153 else if ((uint8_t) 'a' <= c && c <= (uint8_t) 'f')
157 v = (uint8_t) ((v << 4) | c);
165 ao_gps_parse_pos(uint8_t deg_width)
172 d = ao_gps_decimal(deg_width);
173 m = ao_gps_decimal(2);
176 f = ao_gps_decimal(4);
177 while (ao_gps_num_width < 4) {
186 return d * 10000000l + (m * 10000l + f) * 50 / 3;
190 ao_gps_parse_flag(char no_c, char yes_c)
194 if (ao_gps_char == yes_c)
196 else if (ao_gps_char == no_c)
208 /* Skip remaining fields */
211 if (c == '*' || c == '\n' || c == '\r')
217 uint8_t cksum = ao_gps_cksum ^ '*';
218 if (cksum != ao_gps_hex())
229 /* Now read the data into the gps data record
231 * $GPGGA,025149.000,4528.1723,N,12244.2480,W,1,05,2.0,103.5,M,-19.5,M,,0000*66
235 * 025149.000 time (02:51:49.000 GMT)
236 * 4528.1723,N Latitude 45°28.1723' N
237 * 12244.2480,W Longitude 122°44.2480' W
243 * 4 = Real Time Kinematic
245 * 6 = estimated (dead reckoning)
246 * 7 = Manual input mode
247 * 8 = Simulation mode
248 * 05 Number of satellites (5)
249 * 2.0 Horizontal dilution
250 * 103.5,M Altitude, 103.5M above msl
251 * -19.5,M Height of geoid above WGS84 ellipsoid
252 * ? time in seconds since last DGPS update
253 * 0000 DGPS station ID
257 ao_gps_next_tick = ao_time();
258 ao_gps_next.flags = AO_GPS_RUNNING | ao_gps_date_flags;
259 ao_gps_next.hour = (uint8_t) ao_gps_decimal(2);
260 ao_gps_next.minute = (uint8_t) ao_gps_decimal(2);
261 ao_gps_next.second = (uint8_t) ao_gps_decimal(2);
262 ao_gps_skip_field(); /* skip seconds fraction */
264 ao_gps_next.latitude = ao_gps_parse_pos(2);
265 if (ao_gps_parse_flag('N', 'S'))
266 ao_gps_next.latitude = -ao_gps_next.latitude;
267 ao_gps_next.longitude = ao_gps_parse_pos(3);
268 if (ao_gps_parse_flag('E', 'W'))
269 ao_gps_next.longitude = -ao_gps_next.longitude;
271 i = (uint8_t) ao_gps_decimal(0xff);
273 ao_gps_next.flags |= AO_GPS_VALID;
275 i = (uint8_t) (ao_gps_decimal(0xff) << AO_GPS_NUM_SAT_SHIFT);
276 if (i > AO_GPS_NUM_SAT_MASK)
277 i = AO_GPS_NUM_SAT_MASK;
278 ao_gps_next.flags |= i;
281 i = (uint8_t) ao_gps_decimal(0xff);
283 i = (uint8_t) 10 * i;
284 if (ao_gps_char == '.')
285 i = (i + ((uint8_t) ao_gps_decimal(1)));
288 ao_gps_next.hdop = i;
291 AO_TELEMETRY_LOCATION_SET_ALTITUDE(&ao_gps_next, ao_gps_decimal(0xff));
293 ao_gps_skip_field(); /* skip any fractional portion */
298 ao_mutex_get(&ao_gps_mutex);
299 ao_gps_new |= AO_GPS_NEW_DATA;
300 ao_gps_tick = ao_gps_utc_tick = ao_gps_next_tick;
301 memcpy(&ao_gps_data, &ao_gps_next, sizeof (ao_gps_data));
302 ao_mutex_put(&ao_gps_mutex);
303 ao_wakeup(&ao_gps_new);
313 /* Now read the data into the GPS tracking data record
315 * $GPGSV,3,1,12,05,54,069,45,12,44,061,44,21,07,184,46,22,78,289,47*72<CR><LF>
317 * Satellites in view data
319 * 3 Total number of GSV messages
320 * 1 Sequence number of current GSV message
321 * 12 Total sats in view (0-12)
329 c = (uint8_t) ao_gps_decimal(1); /* total messages */
330 i = (uint8_t) ao_gps_decimal(1); /* message sequence */
332 ao_gps_tracking_next.channels = 0;
334 done = (uint8_t) c == i;
336 ao_gps_skip_field(); /* sats in view */
337 while (ao_gps_char != '*' && ao_gps_char != '\n' && ao_gps_char != '\r') {
338 i = ao_gps_tracking_next.channels;
339 c = (uint8_t) ao_gps_decimal(2); /* SVID */
340 if (i < AO_MAX_GPS_TRACKING)
341 ao_gps_tracking_next.sats[i].svid = c;
343 ao_gps_skip_field(); /* elevation */
345 ao_gps_skip_field(); /* azimuth */
346 c = (uint8_t) ao_gps_decimal(2); /* C/N0 */
347 if (i < AO_MAX_GPS_TRACKING) {
348 if ((ao_gps_tracking_next.sats[i].c_n_1 = c) != 0)
349 ao_gps_tracking_next.channels = i + 1;
356 ao_gps_tracking_next.channels = 0;
358 ao_mutex_get(&ao_gps_mutex);
359 ao_gps_new |= AO_GPS_NEW_TRACKING;
360 memcpy(&ao_gps_tracking_data, &ao_gps_tracking_next, sizeof(ao_gps_tracking_data));
361 ao_mutex_put(&ao_gps_mutex);
362 ao_wakeup(&ao_gps_new);
371 /* Parse the RMC record to read out the current date */
373 /* $GPRMC,111636.932,A,2447.0949,N,12100.5223,E,000.0,000.0,030407,,,A*61
375 * Recommended Minimum Specific GNSS Data
377 * 111636.932 UTC time 11:16:36.932
378 * A Data Valid (V = receiver warning)
380 * N North/south indicator
381 * 12100.5223 Longitude
382 * E East/west indicator
383 * 000.0 Speed over ground
384 * 000.0 Course over ground
385 * 030407 UTC date (ddmmyy format)
388 * A = autonomous mode
389 * D = differential mode
390 * E = estimated (dead reckoning) mode
391 * M = manual input mode
396 for (i = 0; i < 8; i++) {
400 a = (uint8_t) ao_gps_decimal(2);
401 c = (uint8_t) ao_gps_decimal(2);
402 i = (uint8_t) ao_gps_decimal(2);
407 ao_gps_next.year = i;
408 ao_gps_next.month = c;
410 ao_gps_date_flags = AO_GPS_DATE_VALID;
414 #define ao_skytraq_sendstruct(s) ao_skytraq_sendbytes((s), sizeof(s))
417 ao_skytraq_sendbytes(const uint8_t *b, uint8_t l)
422 ao_delay(AO_MS_TO_TICKS(500));
428 ao_gps_nmea_parse(void)
436 if (ao_gps_char != 'G')
439 if (ao_gps_char != 'P')
450 if (ao_gps_char != ',')
453 if (a == (uint8_t) 'G' && b == (uint8_t) 'G' && c == (uint8_t) 'A') {
455 } else if (a == (uint8_t) 'G' && b == (uint8_t) 'S' && c == (uint8_t) 'V') {
457 } else if (a == (uint8_t) 'R' && b == (uint8_t) 'M' && c == (uint8_t) 'C') {
462 static uint8_t ao_gps_updating;
467 ao_gps_set_speed(AO_SERIAL_SPEED_9600);
469 /* give skytraq time to boot in case of cold start */
470 ao_delay(AO_MS_TO_TICKS(2000));
472 ao_skytraq_sendstruct(ao_gps_config);
475 /* Locate the begining of the next record */
476 if (ao_gps_getchar() == '$') {
480 while (ao_gps_updating) {
481 ao_usb_putchar(ao_gps_getchar());
482 if (ao_fifo_empty(ao_gps_fifo))
489 struct ao_task ao_gps_task;
491 static const uint8_t ao_gps_115200[] = {
492 SKYTRAQ_MSG_3(5,0,5,0) /* Set to 115200 baud */
496 ao_gps_set_speed_delay(uint8_t speed) {
497 ao_delay(AO_MS_TO_TICKS(500));
498 ao_gps_set_speed(speed);
499 ao_delay(AO_MS_TO_TICKS(500));
506 ao_task_minimize_latency = 1;
508 ao_timer_set_adc_interval(0);
510 ao_skytraq_sendstruct(ao_gps_115200);
511 ao_gps_set_speed_delay(AO_SERIAL_SPEED_4800);
512 ao_skytraq_sendstruct(ao_gps_115200);
513 ao_gps_set_speed_delay(AO_SERIAL_SPEED_115200);
515 /* It's a binary protocol; abandon attempts to escape */
517 ao_gps_putchar(ao_usb_getchar());
520 const struct ao_cmds ao_gps_cmds[] = {
521 { ao_gps_show, "g\0Display GPS" },
522 { gps_update, "U\0Update GPS firmware" },
529 ao_add_task(&ao_gps_task, ao_gps, "gps");
530 ao_cmd_register(&ao_gps_cmds[0]);