aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/ClassDriver/AudioInput/AudioInput.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-03-25 12:12:08 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-03-25 12:12:08 +0000
commit00b6b0140fa76845edaa894e0feb3287e4977c73 (patch)
treedb1f24ab756c218a75f0b6049b0267ca9fea7489 /Demos/Device/ClassDriver/AudioInput/AudioInput.h
parent0424bd4dbc8a6a22310e4081d2d5dc852a92ea4c (diff)
downloadlufa-00b6b0140fa76845edaa894e0feb3287e4977c73.tar.gz
lufa-00b6b0140fa76845edaa894e0feb3287e4977c73.tar.bz2
lufa-00b6b0140fa76845edaa894e0feb3287e4977c73.zip
Re-enable cppcheck static analysis unused function checks after adding in special-case suppressions to the event stub functions. Add missing function prototypes to the AudioInput and AudioOutput class driver device demos.
Diffstat (limited to 'Demos/Device/ClassDriver/AudioInput/AudioInput.h')
-rw-r--r--Demos/Device/ClassDriver/AudioInput/AudioInput.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/Demos/Device/ClassDriver/AudioInput/AudioInput.h b/Demos/Device/ClassDriver/AudioInput/AudioInput.h
index 8a6812cf4..8eac645ce 100644
--- a/Demos/Device/ClassDriver/AudioInput/AudioInput.h
+++ b/Demos/Device/ClassDriver/AudioInput/AudioInput.h
@@ -82,6 +82,18 @@
void EVENT_USB_Device_Disconnect(void);
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_GetSetInterfaceProperty(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);
#endif