aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/RelayBoard
diff options
context:
space:
mode:
authorLászló Monda <laci@monda.hu>2014-01-05 00:21:15 +0100
committerDean Camera <dean@fourwalledcubicle.com>2014-01-08 10:36:19 +1100
commitdeb1675f84aa96395845012a39513b69bc2ccb36 (patch)
tree380350d723fbaf7723aa1da65c2aa623bfa88dca /Projects/RelayBoard
parent28cadf077e8dcbb5819f72110d7ca3eb3b0bc0f1 (diff)
downloadlufa-deb1675f84aa96395845012a39513b69bc2ccb36.tar.gz
lufa-deb1675f84aa96395845012a39513b69bc2ccb36.tar.bz2
lufa-deb1675f84aa96395845012a39513b69bc2ccb36.zip
Use the new USB_STRING_DESCRIPTOR macro for every string descriptor.
Diffstat (limited to 'Projects/RelayBoard')
-rw-r--r--Projects/RelayBoard/Descriptors.c21
1 files changed, 3 insertions, 18 deletions
diff --git a/Projects/RelayBoard/Descriptors.c b/Projects/RelayBoard/Descriptors.c
index 3bfaac251..d5951867a 100644
--- a/Projects/RelayBoard/Descriptors.c
+++ b/Projects/RelayBoard/Descriptors.c
@@ -119,33 +119,18 @@ const USB_Descriptor_String_t PROGMEM RelayBoard_LanguageString =
* 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 RelayBoard_ManufacturerString =
-{
- .Header = {.Size = USB_STRING_LEN(5), .Type = DTYPE_String},
-
- .UnicodeString = L"SISPM"
-};
+const USB_Descriptor_String_t PROGMEM RelayBoard_ManufacturerString = USB_STRING_DESCRIPTOR(L"SISPM");
/** 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 RelayBoard_ProductString =
-{
- .Header = {.Size = USB_STRING_LEN(10), .Type = DTYPE_String},
-
- .UnicodeString = L"RelayBoard"
-};
+const USB_Descriptor_String_t PROGMEM RelayBoard_ProductString = USB_STRING_DESCRIPTOR(L"RelayBoard");
/** Serial number string. This is a Unicode string containing the device's unique serial number, expressed as a
* series of uppercase hexadecimal digits.
*/
-const USB_Descriptor_String_t PROGMEM RelayBoard_SerialString =
-{
- .Header = {.Size = USB_STRING_LEN(5), .Type = DTYPE_String},
-
- .UnicodeString = L"00001"
-};
+const USB_Descriptor_String_t PROGMEM RelayBoard_SerialString = USB_STRING_DESCRIPTOR(L"00001");
/** 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