diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2011-12-01 08:40:14 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2011-12-01 08:40:14 +0000 |
commit | ecba8bcecfa7c8cde46de5392d5852d0c3e9b07a (patch) | |
tree | 9fb95b651e1f388a5fd9cd15ac2b87e79e60d75e | |
parent | 0c59d5993e970ff26c02b4ec59157ecec07fc3cb (diff) | |
download | lufa-ecba8bcecfa7c8cde46de5392d5852d0c3e9b07a.tar.gz lufa-ecba8bcecfa7c8cde46de5392d5852d0c3e9b07a.tar.bz2 lufa-ecba8bcecfa7c8cde46de5392d5852d0c3e9b07a.zip |
Fix incorrect Capabilities value in the CDC class Bootloader descriptors.
-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 2b00d1ead..327f361b5 100644 --- a/Bootloaders/CDC/Descriptors.c +++ b/Bootloaders/CDC/Descriptors.c @@ -115,7 +115,7 @@ const USB_Descriptor_Configuration_t ConfigurationDescriptor = .Header = {.Size = sizeof(USB_CDC_Descriptor_FunctionalACM_t), .Type = DTYPE_CSInterface}, .Subtype = 0x02, - .Capabilities = 0x04, + .Capabilities = 0x06, }, .CDC_Functional_Union = |