diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-09-15 10:47:22 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-09-15 10:47:22 +0000 |
commit | 0d57659fa67f7122155a2e0ecfa0e96c51320f73 (patch) | |
tree | 73e14eddf56790e1631ece1748e26115bc5df06e /LUFA/Drivers | |
parent | 6d2f091cec6ef71b65658301630acfb1b615a278 (diff) | |
download | lufa-0d57659fa67f7122155a2e0ecfa0e96c51320f73.tar.gz lufa-0d57659fa67f7122155a2e0ecfa0e96c51320f73.tar.bz2 lufa-0d57659fa67f7122155a2e0ecfa0e96c51320f73.zip |
Fix incorrect documentation on the Get Descriptor standard request.
Diffstat (limited to 'LUFA/Drivers')
-rw-r--r-- | LUFA/Drivers/USB/HighLevel/StdRequestType.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/LUFA/Drivers/USB/HighLevel/StdRequestType.h b/LUFA/Drivers/USB/HighLevel/StdRequestType.h index f8e4f45f4..abb5431f7 100644 --- a/LUFA/Drivers/USB/HighLevel/StdRequestType.h +++ b/LUFA/Drivers/USB/HighLevel/StdRequestType.h @@ -143,14 +143,14 @@ * should have its stall condition cleared. If used in a similar manner inside a Set Feature * request, this stalls an endpoint. */ - #define FEATURE_ENDPOINT_HALT 0x00 + #define FEATURE_ENDPOINT_HALT 0x00 /** Feature indicator for Clear Feature or Set Feature commands. When used in a Clear Feature * request this indicates that the remote wakeup enabled device should not issue remote * wakeup requests until further notice. If used in a similar manner inside a Set Feature * request, this re-enabled the remote wakeup feature on the device. */ - #define FEATURE_REMOTE_WAKEUP 0x01 + #define FEATURE_REMOTE_WAKEUP 0x01 /* Type Defines: */ /** \brief Standard USB Control Request @@ -193,8 +193,10 @@ * to the user application for other recipients via the * \ref EVENT_USB_Device_UnhandledControlRequest() event when received in * device mode. */ - REQ_GetDescriptor = 6, /**< Implemented in the library for all recipients and all request - * types. */ + REQ_GetDescriptor = 6, /**< Implemented in the library for device and interface recipients. Passed to the + * user application for other recipients via the + * \ref EVENT_USB_Device_UnhandledControlRequest() event when received in + * device mode. */ REQ_SetDescriptor = 7, /**< Not implemented in the library, passed to the user application * via the \ref EVENT_USB_Device_UnhandledControlRequest() event when received in * device mode. */ |