From 95cdbda6e1a4d55891abeb465a1f480fedfa0a95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Sat, 23 Jul 2022 13:34:06 +0200 Subject: [PATCH] usb: add CuVoodoo PID --- examples/device/dfu_freertos/src/usb_descriptors.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/device/dfu_freertos/src/usb_descriptors.c b/examples/device/dfu_freertos/src/usb_descriptors.c index 69f14b4e7..237fcd821 100644 --- a/examples/device/dfu_freertos/src/usb_descriptors.c +++ b/examples/device/dfu_freertos/src/usb_descriptors.c @@ -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 };