usb: add CuVoodoo PID

This commit is contained in:
King Kévin 2022-07-23 13:34:06 +02:00
parent 89de0061d6
commit 95cdbda6e1
1 changed files with 5 additions and 5 deletions

View File

@ -59,8 +59,8 @@ tusb_desc_device_t const desc_device =
.bMaxPacketSize0 = CFG_TUD_ENDPOINT0_SIZE,
.idVendor = 0xCafe,
.idProduct = USB_PID,
.idVendor = 0x1d50,
.idProduct = 0x617b,
.bcdDevice = 0x0100,
.iManufacturer = 0x01,
@ -120,9 +120,9 @@ uint8_t const * tud_descriptor_configuration_cb(uint8_t index)
char const* string_desc_arr [] =
{
(const char[]) { 0x09, 0x04 }, // 0: is supported language is English (0x0409)
"TinyUSB", // 1: Manufacturer
"TinyUSB Device", // 2: Product
"123456", // 3: Serials, should use chip ID
"CuVoodoo", // 1: Manufacturer
"ESP32-S2 DFU", // 2: Product
"", // 3: Serials, should use chip ID
"ota0", // 4: DFU Partition 1
};