diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2011-06-14 12:55:32 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2011-06-14 12:55:32 +0000 |
commit | 57eedebd191c91ce125238a8a2cb1482186d6164 (patch) | |
tree | 6eafe02ecf680e0439964e353a7d3a07421e06e8 /Demos/Host | |
parent | 21a012a018221fd1e55b8b054d09d7900ed9fd79 (diff) | |
download | lufa-57eedebd191c91ce125238a8a2cb1482186d6164.tar.gz lufa-57eedebd191c91ce125238a8a2cb1482186d6164.tar.bz2 lufa-57eedebd191c91ce125238a8a2cb1482186d6164.zip |
Fix Doxygen documentation errors.
Diffstat (limited to 'Demos/Host')
4 files changed, 4 insertions, 4 deletions
diff --git a/Demos/Host/LowLevel/AudioInputHost/ConfigDescriptor.c b/Demos/Host/LowLevel/AudioInputHost/ConfigDescriptor.c index 8f551144c..0ce054f34 100644 --- a/Demos/Host/LowLevel/AudioInputHost/ConfigDescriptor.c +++ b/Demos/Host/LowLevel/AudioInputHost/ConfigDescriptor.c @@ -53,7 +53,7 @@ uint8_t StreamingEndpointAddress = 0; *
* This routine searches for a Streaming Audio interface descriptor containing a valid Isochronous audio endpoint.
*
- * \return An error code from the \ref RNDISHost_GetConfigDescriptorDataCodes_t enum.
+ * \return An error code from the \ref AudioHost_GetConfigDescriptorDataCodes_t enum.
*/
uint8_t ProcessConfigurationDescriptor(void)
{
diff --git a/Demos/Host/LowLevel/AudioInputHost/ConfigDescriptor.h b/Demos/Host/LowLevel/AudioInputHost/ConfigDescriptor.h index 4a1cf9093..c2a845e4d 100644 --- a/Demos/Host/LowLevel/AudioInputHost/ConfigDescriptor.h +++ b/Demos/Host/LowLevel/AudioInputHost/ConfigDescriptor.h @@ -47,7 +47,7 @@ /* Enums: */
/** Enum for the possible return codes of the \ref ProcessConfigurationDescriptor() function. */
- enum KeyboardHost_GetConfigDescriptorDataCodes_t
+ enum AudioHost_GetConfigDescriptorDataCodes_t
{
SuccessfulConfigRead = 0, /**< Configuration Descriptor was processed successfully */
ControlError = 1, /**< A control request to the device failed to complete successfully */
diff --git a/Demos/Host/LowLevel/AudioOutputHost/ConfigDescriptor.c b/Demos/Host/LowLevel/AudioOutputHost/ConfigDescriptor.c index 2171320c7..46a0e331f 100644 --- a/Demos/Host/LowLevel/AudioOutputHost/ConfigDescriptor.c +++ b/Demos/Host/LowLevel/AudioOutputHost/ConfigDescriptor.c @@ -53,7 +53,7 @@ uint8_t StreamingEndpointAddress = 0; *
* This routine searches for a Streaming Audio interface descriptor containing a valid Isochronous audio endpoint.
*
- * \return An error code from the \ref RNDISHost_GetConfigDescriptorDataCodes_t enum.
+ * \return An error code from the \ref AudioHost_GetConfigDescriptorDataCodes_t enum.
*/
uint8_t ProcessConfigurationDescriptor(void)
{
diff --git a/Demos/Host/LowLevel/AudioOutputHost/ConfigDescriptor.h b/Demos/Host/LowLevel/AudioOutputHost/ConfigDescriptor.h index c952a2813..08dc69a5f 100644 --- a/Demos/Host/LowLevel/AudioOutputHost/ConfigDescriptor.h +++ b/Demos/Host/LowLevel/AudioOutputHost/ConfigDescriptor.h @@ -47,7 +47,7 @@ /* Enums: */
/** Enum for the possible return codes of the \ref ProcessConfigurationDescriptor() function. */
- enum KeyboardHost_GetConfigDescriptorDataCodes_t
+ enum AudioHost_GetConfigDescriptorDataCodes_t
{
SuccessfulConfigRead = 0, /**< Configuration Descriptor was processed successfully */
ControlError = 1, /**< A control request to the device failed to complete successfully */
|