diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-07-28 10:46:20 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-07-28 10:46:20 +0000 |
commit | 61ff4824a904d156e719ab2967b613cf095e908e (patch) | |
tree | 04b28268cfef56b2ae2ad72ea37e5dd1edb1331b /Demos/Device/LowLevel/AudioInput | |
parent | 864196c884ef3602aee44f1a68aceb5819a07f21 (diff) | |
download | lufa-61ff4824a904d156e719ab2967b613cf095e908e.tar.gz lufa-61ff4824a904d156e719ab2967b613cf095e908e.tar.bz2 lufa-61ff4824a904d156e719ab2967b613cf095e908e.zip |
Changed AudioOutput demos to explicitly use timer 3 - the smaller USB AVRs where timer 1 was needed instead did not have the endpoint size neccesary for good audio throughput anyway.
Fix Benito documentation indicating erronously that the project used the HID USB class instead of the CDC class.
Diffstat (limited to 'Demos/Device/LowLevel/AudioInput')
-rw-r--r-- | Demos/Device/LowLevel/AudioInput/AudioInput.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Demos/Device/LowLevel/AudioInput/AudioInput.h b/Demos/Device/LowLevel/AudioInput/AudioInput.h index 082b0555b..591d3f355 100644 --- a/Demos/Device/LowLevel/AudioInput/AudioInput.h +++ b/Demos/Device/LowLevel/AudioInput/AudioInput.h @@ -50,13 +50,13 @@ /* Macros: */
/** ADC channel number for the microphone input. */
- #define MIC_IN_ADC_CHANNEL 2
+ #define MIC_IN_ADC_CHANNEL 2
/** Maximum ADC sample value for the microphone input. */
- #define SAMPLE_MAX_RANGE 0xFFFF
+ #define SAMPLE_MAX_RANGE 0xFFFF
/** Maximum ADC range for the microphone input. */
- #define ADC_MAX_RANGE 0x3FF
+ #define ADC_MAX_RANGE 0x3FF
/** LED mask for the library LED driver, to indicate that the USB interface is not ready. */
#define LEDMASK_USB_NOTREADY LEDS_LED1
|