diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2009-05-02 13:05:25 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2009-05-02 13:05:25 +0000 |
| commit | fce5ba923846d21336aa4de26bff94b2262dd92f (patch) | |
| tree | e918ffd16c91005992cf83583812bef4571dd338 /Bootloaders/CDC/Descriptors.c | |
| parent | a4f30490c66e7426611abeb4f3b8ed164302c5ed (diff) | |
Fixed Endpoint_Write_Control_* functions writing more data than expected by the host, causing it to panic (thanks to Johannes Raschke).
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@529 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Bootloaders/CDC/Descriptors.c')
| -rw-r--r-- | Bootloaders/CDC/Descriptors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bootloaders/CDC/Descriptors.c b/Bootloaders/CDC/Descriptors.c index e9787cf7..06088d8f 100644 --- a/Bootloaders/CDC/Descriptors.c +++ b/Bootloaders/CDC/Descriptors.c @@ -198,7 +198,7 @@ USB_Descriptor_String_t LanguageString = */
USB_Descriptor_String_t ProductString =
{
- .Header = {.Size = USB_STRING_LEN(15), .Type = DTYPE_String},
+ .Header = {.Size = USB_STRING_LEN(18), .Type = DTYPE_String},
.UnicodeString = L"AVR CDC Bootloader"
};
|
