diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-05-10 05:23:35 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-05-10 05:23:35 +0000 |
commit | 3f48497874e573e83153a989000fe5f6a26de856 (patch) | |
tree | f37a4e92f6a99a5a5f17192e3f0587b28339bfbd /Demos | |
parent | 1f83abe6f42c302cf3af7e16e5bb02d886a2c82a (diff) | |
download | lufa-3f48497874e573e83153a989000fe5f6a26de856.tar.gz lufa-3f48497874e573e83153a989000fe5f6a26de856.tar.bz2 lufa-3f48497874e573e83153a989000fe5f6a26de856.zip |
Fix broken Set Feature/Clear Feature chapter 9 request (incorrect status stage clearing).
Commit for the 090510 release.
Diffstat (limited to 'Demos')
-rw-r--r-- | Demos/Device/CDC/Descriptors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/Device/CDC/Descriptors.c b/Demos/Device/CDC/Descriptors.c index 70c885fe5..c147546f1 100644 --- a/Demos/Device/CDC/Descriptors.c +++ b/Demos/Device/CDC/Descriptors.c @@ -51,7 +51,7 @@ USB_Descriptor_Device_t PROGMEM DeviceDescriptor = .SubClass = 0x00,
.Protocol = 0x00,
- .Endpoint0Size = 8,//FIXED_CONTROL_ENDPOINT_SIZE,
+ .Endpoint0Size = FIXED_CONTROL_ENDPOINT_SIZE,
.VendorID = 0x03EB,
.ProductID = 0x2044,
|