From 62adf4da7167159e47f874a148b4c2a010492bef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Th=C3=B6rnblad?= Date: Fri, 27 Jun 2025 14:25:46 +0200 Subject: [PATCH] Update USB VID and PID for Castor VID has been wrong for some reason, therefore changed to the correct value 0x1209. New PID to differentiate Castor from Bellatrix. --- hw/usb_interface/ch552_fw/src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/usb_interface/ch552_fw/src/main.c b/hw/usb_interface/ch552_fw/src/main.c index c8cbb5c..35c98d7 100644 --- a/hw/usb_interface/ch552_fw/src/main.c +++ b/hw/usb_interface/ch552_fw/src/main.c @@ -123,9 +123,9 @@ FLASH uint8_t DevDesc[] = { 0x02, /* bDeviceSubClass: Common Class */ 0x01, /* bDeviceProtocol: IAD (Interface Association Descriptor) */ DEFAULT_EP0_SIZE, /* bMaxPacketSize */ - 0x07, /* idVendor */ // VID LOBYTE + 0x09, /* idVendor */ // VID LOBYTE 0x12, /* idVendor */ // VID HIBYTE - 0x87, /* idProduct */ // PID LOBYTE + 0x85, /* idProduct */ // PID LOBYTE 0x88, /* idProduct */ // PID HIBYTE 0x00, /* bcdDevice (device release number in binary-coded decimal (BCD) format, low byte, i.e. YY) rel. XX.YY */ 0x01, /* bcdDevice (device release number in binary-coded decimal (BCD) format, high byte, i.e. XX) rel. XX.YY */