Add USB_STRING_DESCRIPTOR and make the Keyboard demo use it.
This commit is contained in:
parent
2e70de6194
commit
28cadf077e
2 changed files with 6 additions and 18 deletions
|
@ -706,6 +706,9 @@
|
|||
#endif
|
||||
} ATTR_PACKED USB_Descriptor_String_t;
|
||||
|
||||
/** Convenience macro to easily create \ref USB_Descriptor_String_t instances without having to count characters. */
|
||||
#define USB_STRING_DESCRIPTOR(string) {.Header = {.Size = sizeof(string), .Type = DTYPE_String}, .UnicodeString = string}
|
||||
|
||||
/** \brief Standard USB String Descriptor (USB-IF naming conventions).
|
||||
*
|
||||
* Type define for a standard string descriptor. Unlike other standard descriptors, the length
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue