diff --git a/bootloader/usb.c b/bootloader/usb.c index 128eefbca..9c6231713 100644 --- a/bootloader/usb.c +++ b/bootloader/usb.c @@ -58,9 +58,9 @@ static const struct usb_device_descriptor dev_descr = { .bDeviceSubClass = 0, .bDeviceProtocol = 0, .bMaxPacketSize0 = 64, - .idVendor = 0x534c, - .idProduct = 0x0001, - .bcdDevice = 0x0300, + .idVendor = 0x1209, + .idProduct = 0x53c0, + .bcdDevice = 0x0100, .iManufacturer = 1, .iProduct = 2, .iSerialNumber = 3, diff --git a/demo/demo.c b/demo/demo.c index 7a92d15b1..d77279f0b 100644 --- a/demo/demo.c +++ b/demo/demo.c @@ -47,8 +47,8 @@ static const struct usb_device_descriptor dev_descr = { .bDeviceSubClass = 0, .bDeviceProtocol = 0, .bMaxPacketSize0 = 64, - .idVendor = 0x534c, - .idProduct = 0x0001, + .idVendor = 0x1209, + .idProduct = 0x53c1, .bcdDevice = 0x0100, .iManufacturer = 1, .iProduct = 2, diff --git a/firmware/usb.c b/firmware/usb.c index be7cae7b9..228e28a8c 100644 --- a/firmware/usb.c +++ b/firmware/usb.c @@ -82,9 +82,9 @@ static const struct usb_device_descriptor dev_descr = { .bDeviceSubClass = 0, .bDeviceProtocol = 0, .bMaxPacketSize0 = 64, - .idVendor = 0x534c, - .idProduct = 0x0001, - .bcdDevice = 0x0200, + .idVendor = 0x1209, + .idProduct = 0x53c1, + .bcdDevice = 0x0100, .iManufacturer = USB_STRING_MANUFACTURER, .iProduct = USB_STRING_PRODUCT, .iSerialNumber = USB_STRING_SERIAL_NUMBER,