Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Erik Strand
lufa
Commits
4b194592
Commit
4b194592
authored
Aug 28, 2012
by
Dean Camera
Browse files
Fix incorrect string length in the USBtoSerial demo descriptors (thanks to Oliver Zander).
parent
44aea229
Changes
1
Hide whitespace changes
Inline
Side-by-side
Projects/USBtoSerial/Descriptors.c
View file @
4b194592
...
...
@@ -203,7 +203,7 @@ const USB_Descriptor_String_t PROGMEM ManufacturerString =
*/
const
USB_Descriptor_String_t
PROGMEM
ProductString
=
{
.
Header
=
{.
Size
=
USB_STRING_LEN
(
2
3
),
.
Type
=
DTYPE_String
},
.
Header
=
{.
Size
=
USB_STRING_LEN
(
2
2
),
.
Type
=
DTYPE_String
},
.
UnicodeString
=
L"LUFA USB-RS232 Adapter"
};
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment