summaryrefslogtreecommitdiff
path: root/src/test/ao_gps_test_ublox.c
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2013-10-14 22:41:43 -0700
committerKeith Packard <keithp@keithp.com>2013-10-14 22:41:43 -0700
commit039446f54ef6968a3f0b37ce32ca6bdcdbe62546 (patch)
treed66195ea4d80894af1b4ab771a6878abb770848a /src/test/ao_gps_test_ublox.c
parent5c4b3658a96f1a64ccebf7bddda06b15b4ac4a6f (diff)
altos: Merge GPS logging into a single function
Create a new global, ao_gps_new, which indicates new GPS position and satellite data. Use ao_gps_new as the new sleep/wakeup address. Merge the separate gps position/satellite logging tasks into a single function which waits for new data and writes out the changed values. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/test/ao_gps_test_ublox.c')
-rw-r--r--src/test/ao_gps_test_ublox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/ao_gps_test_ublox.c b/src/test/ao_gps_test_ublox.c
index a0e04cb6..31c7af60 100644
--- a/src/test/ao_gps_test_ublox.c
+++ b/src/test/ao_gps_test_ublox.c
@@ -347,7 +347,7 @@ check_ublox_message(char *which, uint8_t *msg)
void
ao_dump_state(void *wchan)
{
- if (wchan == &ao_gps_data)
+ if (wchan == &ao_gps_new)
ao_gps_show();
return;
}