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_dbg.c | |
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_dbg.c')
-rw-r--r-- | src/ao_dbg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ao_dbg.c b/src/ao_dbg.c index c8dc6ddc..b218897c 100644 --- a/src/ao_dbg.c +++ b/src/ao_dbg.c @@ -26,7 +26,7 @@ #define DBG_RESET_N_PIN (P0_5) static void -ao_dbg_send_bits(uint8_t msk, uint8_t val) +ao_dbg_send_bits(uint8_t msk, uint8_t val) __reentrant { P0 = (P0 & ~msk) | (val & msk); _asm |