diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-09-01 22:08:59 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-09-01 22:08:59 +0000 |
commit | 376160e2c072a7d76560f1a864c02730ee684e62 (patch) | |
tree | cda09de20d2b102925491c580d4051fe785bca61 /LUFA/Drivers/USB/Core | |
parent | 43658f336ed0ba9fc4a6c931eafd71bac7b8f1f0 (diff) | |
download | lufa-376160e2c072a7d76560f1a864c02730ee684e62.tar.gz lufa-376160e2c072a7d76560f1a864c02730ee684e62.tar.bz2 lufa-376160e2c072a7d76560f1a864c02730ee684e62.zip |
Add human readable license information and add some missing module documentation briefs.
Diffstat (limited to 'LUFA/Drivers/USB/Core')
-rw-r--r-- | LUFA/Drivers/USB/Core/ConfigDescriptors.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/LUFA/Drivers/USB/Core/ConfigDescriptors.h b/LUFA/Drivers/USB/Core/ConfigDescriptors.h index 97fb39b57..0a80e7fd8 100644 --- a/LUFA/Drivers/USB/Core/ConfigDescriptors.h +++ b/LUFA/Drivers/USB/Core/ConfigDescriptors.h @@ -47,8 +47,8 @@ * @{ */ -#ifndef __CONFIGDESCRIPTOR_H__ -#define __CONFIGDESCRIPTOR_H__ +#ifndef __CONFIGDESCRIPTORS_H__ +#define __CONFIGDESCRIPTORS_H__ /* Includes: */ #include "../../../Common/Common.h" @@ -119,16 +119,16 @@ { HOST_GETCONFIG_Successful = 0, /**< No error occurred while retrieving the configuration descriptor. */ HOST_GETCONFIG_DeviceDisconnect = 1, /**< The attached device was disconnected while retrieving the configuration - * descriptor. - */ + * descriptor. + */ HOST_GETCONFIG_PipeError = 2, /**< An error occurred in the pipe while sending the request. */ HOST_GETCONFIG_SetupStalled = 3, /**< The attached device stalled the request to retrieve the configuration - * descriptor. - */ + * descriptor. + */ HOST_GETCONFIG_SoftwareTimeOut = 4, /**< The request or data transfer timed out. */ HOST_GETCONFIG_BuffOverflow = 5, /**< The device's configuration descriptor is too large to fit into the allocated - * buffer. - */ + * buffer. + */ HOST_GETCONFIG_InvalidData = 6, /**< The device returned invalid configuration descriptor data. */ }; |