diff options
author | Keith Packard <keithp@keithp.com> | 2009-08-18 22:35:15 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2009-08-18 22:35:15 -0700 |
commit | 29687cbd462a332d9a36ed87500c5b737dcae3f4 (patch) | |
tree | b762cc4fc6f44487656f4a95ac92df013b0f7f19 /src/ao_host.h | |
parent | 7d4ceb75a454e6c9b3fe0bd934fadcb5104dea36 (diff) |
Handle GPS satellite tracking data
SiRF message #4 includes signal strength and GPS engine state for each
of the satellites being tracked. This data is now parsed and sent to
eeprom and the radio.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/ao_host.h')
-rw-r--r-- | src/ao_host.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ao_host.h b/src/ao_host.h index 38ff84ac..6b42f9f9 100644 --- a/src/ao_host.h +++ b/src/ao_host.h @@ -65,7 +65,7 @@ uint8_t ao_adc_head; #define ao_led_on(l) #define ao_led_off(l) #define ao_timer_set_adc_interval(i) -#define ao_wakeup(wchan) ao_dump_state() +#define ao_wakeup(wchan) ao_dump_state(wchan) #define ao_cmd_register(c) #define ao_usb_disable() #define ao_telemetry_set_interval(x) @@ -100,7 +100,7 @@ struct ao_adc ao_adc_static; FILE *emulator_in; void -ao_dump_state(void); +ao_dump_state(void *wchan); void ao_sleep(void *wchan); |