diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-10-14 09:42:11 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-10-14 09:42:11 +0000 |
commit | e53c120a2240549d42d98be92f25d6e92caeab0a (patch) | |
tree | 48179a33fee423b2ece3e757f041178940d340cd /Demos/Device/ClassDriver/AudioInput | |
parent | dc68de15b69c2064b1b14d00659aa91054cccbe1 (diff) | |
download | lufa-e53c120a2240549d42d98be92f25d6e92caeab0a.tar.gz lufa-e53c120a2240549d42d98be92f25d6e92caeab0a.tar.bz2 lufa-e53c120a2240549d42d98be92f25d6e92caeab0a.zip |
Fix AudioOutput and AudioInput class driver demos' descriptors -- incorrect value was being supplied in the audio descritors field giving the number of discrete audio formats the device supports.
Diffstat (limited to 'Demos/Device/ClassDriver/AudioInput')
-rw-r--r-- | Demos/Device/ClassDriver/AudioInput/AudioInput.h | 1 | ||||
-rw-r--r-- | Demos/Device/ClassDriver/AudioInput/Descriptors.c | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/Demos/Device/ClassDriver/AudioInput/AudioInput.h b/Demos/Device/ClassDriver/AudioInput/AudioInput.h index 03e2a6da3..cf08c4e54 100644 --- a/Demos/Device/ClassDriver/AudioInput/AudioInput.h +++ b/Demos/Device/ClassDriver/AudioInput/AudioInput.h @@ -43,7 +43,6 @@ #include <LUFA/Version.h>
#include <LUFA/Drivers/Board/LEDs.h>
- #include <LUFA/Drivers/Board/Joystick.h>
#include <LUFA/Drivers/Peripheral/ADC.h>
#include <LUFA/Drivers/USB/USB.h>
#include <LUFA/Drivers/USB/Class/Audio.h>
diff --git a/Demos/Device/ClassDriver/AudioInput/Descriptors.c b/Demos/Device/ClassDriver/AudioInput/Descriptors.c index e6419ad48..6753171e8 100644 --- a/Demos/Device/ClassDriver/AudioInput/Descriptors.c +++ b/Demos/Device/ClassDriver/AudioInput/Descriptors.c @@ -199,7 +199,7 @@ USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor = .SubFrameSize = 0x02,
.BitResolution = 16,
- .SampleFrequencyType = (AUDIO_TOTAL_SAMPLE_RATES * sizeof(USB_Audio_SampleFreq_t)),
+ .SampleFrequencyType = AUDIO_TOTAL_SAMPLE_RATES,
.SampleFrequencies = {AUDIO_SAMPLE_FREQ(AUDIO_SAMPLE_FREQUENCY)}
},
|