diff options
author | Keith Packard <keithp@keithp.com> | 2012-12-25 14:20:42 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-12-25 14:20:42 -0800 |
commit | 868ef0c9c4b208c02a87180b0eede329369bdc77 (patch) | |
tree | 1f20d312d56bac34bad12f287629a2651bbbccf8 /src/test/ao_gps_test.c | |
parent | 669cde8a87d88ceae89e369c1d38b88c9f8198cf (diff) | |
parent | 57487e78b90465a21c87cf30deb0aeaba0887332 (diff) |
Merge branch 'master' into micropeak-logging
Diffstat (limited to 'src/test/ao_gps_test.c')
-rw-r--r-- | src/test/ao_gps_test.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/test/ao_gps_test.c b/src/test/ao_gps_test.c index d75a12ec..3844a326 100644 --- a/src/test/ao_gps_test.c +++ b/src/test/ao_gps_test.c @@ -88,6 +88,7 @@ ao_mutex_put(uint8_t *mutex) static int ao_gps_fd; +#if 0 static void ao_dbg_char(char c) { @@ -103,6 +104,7 @@ ao_dbg_char(char c) } write(1, line, strlen(line)); } +#endif #define QUEUE_LEN 4096 @@ -391,6 +393,7 @@ ao_serial1_putchar(char c) #define AO_SERIAL_SPEED_4800 0 #define AO_SERIAL_SPEED_57600 1 +#define AO_SERIAL_SPEED_115200 2 static void ao_serial1_set_speed(uint8_t speed) @@ -407,6 +410,9 @@ ao_serial1_set_speed(uint8_t speed) case AO_SERIAL_SPEED_57600: cfsetspeed(&termios, B57600); break; + case AO_SERIAL_SPEED_115200: + cfsetspeed(&termios, B115200); + break; } tcsetattr(fd, TCSAFLUSH, &termios); tcflush(fd, TCIFLUSH); @@ -420,7 +426,6 @@ ao_serial1_set_speed(uint8_t speed) void ao_dump_state(void *wchan) { - double lat, lon; int i; if (wchan == &ao_gps_data) ao_gps_print(&ao_gps_data); @@ -510,4 +515,5 @@ main (int argc, char **argv) } ao_gps_setup(); ao_gps(); + return 0; } |