We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15014fb commit 2c479c6Copy full SHA for 2c479c6
cores/esp32/esp32-hal-tinyusb.c
@@ -140,7 +140,7 @@ static tusb_desc_device_t tinyusb_device_descriptor = {
140
static uint32_t tinyusb_string_descriptor_len = 4;
141
static char * tinyusb_string_descriptor[MAX_STRING_DESCRIPTORS] = {
142
// array of pointer to string descriptors
143
- "\x09\x04", // 0: is supported language is English (0x0409)
+ (char*) "\x09\x04", // 0: is supported language is English (0x0409)
144
USB_DEVICE_MANUFACTURER,// 1: Manufacturer
145
USB_DEVICE_PRODUCT, // 2: Product
146
USB_DEVICE_SERIAL, // 3: Serials, should use chip ID
0 commit comments