diff options
author | Keith Packard <keithp@keithp.com> | 2013-08-26 17:15:55 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-08-26 17:15:55 -0700 |
commit | 8ca98dc8c868c47c372d6b666c36e691fa402824 (patch) | |
tree | e1d49dffb0de28d1131872e2818fe5babc42bfca /src/cc1111 | |
parent | af9f9cf0c21630562c74fae41773319229bf44d3 (diff) |
altos: Get telemini to copy current MS5607 state to ring.
The ADC code is responsible for actually inserting the non-ADC data
into the ring, so do the copy there.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/cc1111')
-rw-r--r-- | src/cc1111/ao_adc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cc1111/ao_adc.c b/src/cc1111/ao_adc.c index 1523f94a..97a39c4d 100644 --- a/src/cc1111/ao_adc.c +++ b/src/cc1111/ao_adc.c @@ -164,7 +164,7 @@ ao_adc_isr(void) __interrupt 1 #endif #ifdef FETCH_ADC - FETCH_ADC() + FETCH_ADC(); #define GOT_ADC #endif |