diff options
author | Keith Packard <keithp@keithp.com> | 2011-05-21 19:55:08 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-05-21 19:55:08 -0700 |
commit | 77a7e1285c17c78b644d6d774990d3f02ca080d2 (patch) | |
tree | fa1fda71705e887c32f2b702a22ede28de9e9620 /src-avr/ao.h | |
parent | d6f828b56b55abaebad2d47a57e40783c042602d (diff) |
src-avr: Finish up telescience logging
Adds list and delete commands, making them compatible with telemetrum
and telemini equivalents.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src-avr/ao.h')
-rw-r--r-- | src-avr/ao.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-avr/ao.h b/src-avr/ao.h index 6d025c99..cc600f20 100644 --- a/src-avr/ao.h +++ b/src-avr/ao.h @@ -201,7 +201,7 @@ struct ao_adc { * ao_adc.c */ -#define AO_ADC_RING 16 +#define AO_ADC_RING 8 #define ao_adc_ring_next(n) (((n) + 1) & (AO_ADC_RING - 1)) #define ao_adc_ring_prev(n) (((n) - 1) & (AO_ADC_RING - 1)) |