diff options
author | László Monda <laci@monda.hu> | 2014-01-04 00:14:45 +0100 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2014-01-08 10:36:18 +1100 |
commit | 28cadf077e8dcbb5819f72110d7ca3eb3b0bc0f1 (patch) | |
tree | 23fccfbd74b69e394af57abc56afb5ccf62f790a /Demos | |
parent | 2e70de6194c4637efcf871cd878630bfaf99707e (diff) | |
download | lufa-28cadf077e8dcbb5819f72110d7ca3eb3b0bc0f1.tar.gz lufa-28cadf077e8dcbb5819f72110d7ca3eb3b0bc0f1.tar.bz2 lufa-28cadf077e8dcbb5819f72110d7ca3eb3b0bc0f1.zip |
Add USB_STRING_DESCRIPTOR and make the Keyboard demo use it.
Diffstat (limited to 'Demos')
-rw-r--r-- | Demos/Device/ClassDriver/Keyboard/Descriptors.c | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/Demos/Device/ClassDriver/Keyboard/Descriptors.c b/Demos/Device/ClassDriver/Keyboard/Descriptors.c index d5268a769..b14c5d637 100644 --- a/Demos/Device/ClassDriver/Keyboard/Descriptors.c +++ b/Demos/Device/ClassDriver/Keyboard/Descriptors.c @@ -142,34 +142,19 @@ const USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor = * the string descriptor with index 0 (the first index). It is actually an array of 16-bit integers, which indicate * via the language ID table available at USB.org what languages the device supports for its string descriptors. */ -const USB_Descriptor_String_t PROGMEM LanguageString = -{ - .Header = {.Size = USB_STRING_LEN(1), .Type = DTYPE_String}, - - .UnicodeString = {LANGUAGE_ID_ENG} -}; +const USB_Descriptor_String_t PROGMEM LanguageString = USB_STRING_DESCRIPTOR(LANGUAGE_ID_ENG); /** Manufacturer descriptor string. This is a Unicode string containing the manufacturer's details in human readable * form, and is read out upon request by the host when the appropriate string ID is requested, listed in the Device * Descriptor. */ -const USB_Descriptor_String_t PROGMEM ManufacturerString = -{ - .Header = {.Size = USB_STRING_LEN(11), .Type = DTYPE_String}, - - .UnicodeString = L"Dean Camera" -}; +const USB_Descriptor_String_t PROGMEM ManufacturerString = USB_STRING_DESCRIPTOR(L"Dean Camera"); /** Product descriptor string. This is a Unicode string containing the product's details in human readable form, * and is read out upon request by the host when the appropriate string ID is requested, listed in the Device * Descriptor. */ -const USB_Descriptor_String_t PROGMEM ProductString = -{ - .Header = {.Size = USB_STRING_LEN(18), .Type = DTYPE_String}, - - .UnicodeString = L"LUFA Keyboard Demo" -}; +const USB_Descriptor_String_t PROGMEM ProductString = USB_STRING_DESCRIPTOR(L"LUFA Keyboard Demo"); /** This function is called by the library when in device mode, and must be overridden (see library "USB Descriptors" * documentation) by the application code so that the address and size of a requested descriptor can be given |