diff options
author | Keith Packard <keithp@keithp.com> | 2012-07-20 12:23:24 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-07-20 12:23:24 -0700 |
commit | 4a08e298d65aeb591ef68f27c49af68d75a85290 (patch) | |
tree | b18f24e4fca4a56abb0da7dc436ba1cf6b5a35a3 /src/avr/ao_adc_avr.c | |
parent | ec97654d20192ca96e7e3293e9d3d80345e37074 (diff) |
Make telepyro build again
Make the ICP3 rpm counter use in ao_adc_avr.c optional
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/avr/ao_adc_avr.c')
-rw-r--r-- | src/avr/ao_adc_avr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/avr/ao_adc_avr.c b/src/avr/ao_adc_avr.c index 4896b015..739a6d4a 100644 --- a/src/avr/ao_adc_avr.c +++ b/src/avr/ao_adc_avr.c @@ -97,8 +97,10 @@ ISR(ADC_vect) if (++ao_adc_channel < NUM_ADC - 1) ao_adc_start(); else { +#if HAS_ICP3_COUNT /* steal last adc channel for pwm input */ ao_data_ring[ao_data_head].adc.adc[ao_adc_channel] = ao_icp3_count; +#endif ADCSRA = ADCSRA_INIT; ao_data_ring[ao_data_head].tick = ao_time(); ao_data_head = ao_data_ring_next(ao_data_head); |