diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-03-29 19:47:37 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-03-29 19:47:37 +0000 |
commit | bb055c24e347c7117d1114d710f337c5a87d8994 (patch) | |
tree | 15c7427fa2a80d8162b5f6050a5f4a91fe28aacd /Demos/Device/ClassDriver/AudioOutput/AudioOutput.h | |
parent | b3aaffb792aed373fecd4af16478cb3c2b8c2a8f (diff) | |
download | lufa-bb055c24e347c7117d1114d710f337c5a87d8994.tar.gz lufa-bb055c24e347c7117d1114d710f337c5a87d8994.tar.bz2 lufa-bb055c24e347c7117d1114d710f337c5a87d8994.zip |
Oops - fix compile errors in the AudioInput/AudioOutput class driver demos.
Diffstat (limited to 'Demos/Device/ClassDriver/AudioOutput/AudioOutput.h')
-rw-r--r-- | Demos/Device/ClassDriver/AudioOutput/AudioOutput.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Demos/Device/ClassDriver/AudioOutput/AudioOutput.h b/Demos/Device/ClassDriver/AudioOutput/AudioOutput.h index a26402cc2..9c6a0fb25 100644 --- a/Demos/Device/ClassDriver/AudioOutput/AudioOutput.h +++ b/Demos/Device/ClassDriver/AudioOutput/AudioOutput.h @@ -70,12 +70,12 @@ void EVENT_USB_Device_ConfigurationChanged(void); void EVENT_USB_Device_ControlRequest(void); - void CALLBACK_Audio_Device_GetSetEndpointProperty(USB_ClassInfo_Audio_Device_t* const AudioInterfaceInfo, - const uint8_t Property, - const uint8_t EntityAddress, - const uint16_t Parameter, - uint16_t* const DataLength, - uint8_t* Data); + bool CALLBACK_Audio_Device_GetSetEndpointProperty(USB_ClassInfo_Audio_Device_t* const AudioInterfaceInfo, + const uint8_t EndpointProperty, + const uint8_t EndpointAddress, + const uint8_t EndpointControl, + uint16_t* const DataLength, + uint8_t* Data) ATTR_NON_NULL_PTR_ARG(1); bool CALLBACK_Audio_Device_GetSetInterfaceProperty(USB_ClassInfo_Audio_Device_t* const AudioInterfaceInfo, const uint8_t Property, const uint8_t EntityAddress, |