diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2018-06-17 13:55:06 +1000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2018-06-17 13:55:06 +1000 |
commit | 16f4492eb4783f3821155d87907ad0db7be9cc90 (patch) | |
tree | 74e4d429a9cd7a26898df001842349fa90a1408d /Projects/Webserver/Descriptors.c | |
parent | 45ab627b4a06f7d0186d7263c1afd30ef4a80dcd (diff) | |
download | lufa-16f4492eb4783f3821155d87907ad0db7be9cc90.tar.gz lufa-16f4492eb4783f3821155d87907ad0db7be9cc90.tar.bz2 lufa-16f4492eb4783f3821155d87907ad0db7be9cc90.zip |
Move class-specific functional descriptor definitions to their respective classes.
Diffstat (limited to 'Projects/Webserver/Descriptors.c')
-rw-r--r-- | Projects/Webserver/Descriptors.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Projects/Webserver/Descriptors.c b/Projects/Webserver/Descriptors.c index be42133b7..8ed7e89bd 100644 --- a/Projects/Webserver/Descriptors.c +++ b/Projects/Webserver/Descriptors.c @@ -119,7 +119,7 @@ const USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor = .CDC_Functional_Header = { - .Header = {.Size = sizeof(USB_CDC_Descriptor_FunctionalHeader_t), .Type = DTYPE_CSInterface}, + .Header = {.Size = sizeof(USB_CDC_Descriptor_FunctionalHeader_t), .Type = CDC_DTYPE_CSInterface}, .Subtype = CDC_DSUBTYPE_CSInterface_Header, .CDCSpecification = VERSION_BCD(1,1,0), @@ -127,7 +127,7 @@ const USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor = .CDC_Functional_ACM = { - .Header = {.Size = sizeof(USB_CDC_Descriptor_FunctionalACM_t), .Type = DTYPE_CSInterface}, + .Header = {.Size = sizeof(USB_CDC_Descriptor_FunctionalACM_t), .Type = CDC_DTYPE_CSInterface}, .Subtype = CDC_DSUBTYPE_CSInterface_ACM, .Capabilities = 0x00, @@ -135,7 +135,7 @@ const USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor = .CDC_Functional_Union = { - .Header = {.Size = sizeof(USB_CDC_Descriptor_FunctionalUnion_t), .Type = DTYPE_CSInterface}, + .Header = {.Size = sizeof(USB_CDC_Descriptor_FunctionalUnion_t), .Type = CDC_DTYPE_CSInterface}, .Subtype = CDC_DSUBTYPE_CSInterface_Union, .MasterInterfaceNumber = INTERFACE_ID_CDC_CCI, |