diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2014-09-28 15:06:31 +1000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2014-09-28 15:06:31 +1000 |
commit | 2d00107efed34a31792a4a4c2989cca738ef1dc5 (patch) | |
tree | 62fefea07ed6ad196f623129b29b0a5645520e6a /Demos | |
parent | 77829096ad99faec3a0ab53f9bbe118050d0a1cc (diff) | |
download | lufa-2d00107efed34a31792a4a4c2989cca738ef1dc5.tar.gz lufa-2d00107efed34a31792a4a4c2989cca738ef1dc5.tar.bz2 lufa-2d00107efed34a31792a4a4c2989cca738ef1dc5.zip |
Fixed broken LowLevel Audio Out demo sampling frequency configuration (thanks to Torsten Duwe).
Diffstat (limited to 'Demos')
-rw-r--r-- | Demos/Device/LowLevel/AudioOutput/AudioOutput.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Demos/Device/LowLevel/AudioOutput/AudioOutput.c b/Demos/Device/LowLevel/AudioOutput/AudioOutput.c index 4f40c70d9..2bccfdee8 100644 --- a/Demos/Device/LowLevel/AudioOutput/AudioOutput.c +++ b/Demos/Device/LowLevel/AudioOutput/AudioOutput.c @@ -198,7 +198,7 @@ void EVENT_USB_Device_ControlRequest(void) Endpoint_ClearSETUP(); Endpoint_Read_Control_Stream_LE(SampleRate, sizeof(SampleRate)); - Endpoint_ClearOUT(); + Endpoint_ClearIN(); /* Set the new sampling frequency to the value given by the host */ CurrentAudioSampleFrequency = (((uint32_t)SampleRate[2] << 16) | ((uint32_t)SampleRate[1] << 8) | (uint32_t)SampleRate[0]); @@ -210,7 +210,7 @@ void EVENT_USB_Device_ControlRequest(void) break; case AUDIO_REQ_GetCurrent: - if (USB_ControlRequest.bmRequestType == (REQDIR_HOSTTODEVICE | REQTYPE_CLASS | REQREC_ENDPOINT)) + if (USB_ControlRequest.bmRequestType == (REQDIR_DEVICETOHOST | REQTYPE_CLASS | REQREC_ENDPOINT)) { /* Extract out the relevant request information to get the target Endpoint address and control being retrieved */ uint8_t EndpointAddress = (uint8_t)USB_ControlRequest.wIndex; |