Skip to content

Commit e9a9130

Browse files
committed
Replacing Arduino VID / PID with the Atmel-supplied ones.
1 parent 0768ebe commit e9a9130

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

hardware/arduino/firmwares/arduino-usbdfu/Descriptors.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ USB_Descriptor_Device_t DeviceDescriptor =
5353

5454
.Endpoint0Size = FIXED_CONTROL_ENDPOINT_SIZE,
5555

56-
.VendorID = 0x03EB,
57-
.ProductID = PRODUCT_ID_CODE,
56+
.VendorID = 0x03EB, // Atmel
57+
.ProductID = PRODUCT_ID_CODE, // MCU-dependent
5858
.ReleaseNumber = 0x0000,
5959

6060
.ManufacturerStrIndex = NO_DESCRIPTOR,

hardware/arduino/firmwares/arduino-usbserial/Descriptors.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ USB_Descriptor_Device_t PROGMEM DeviceDescriptor =
6565

6666
.Endpoint0Size = FIXED_CONTROL_ENDPOINT_SIZE,
6767

68-
.VendorID = 0x2341,
68+
.VendorID = 0x03EB, // Atmel
6969

70-
.ProductID = ARDUINO_MODEL_PID,
70+
.ProductID = 0x2018, // PID_MegaCDC
7171
.ReleaseNumber = 0x0000,
7272

7373
.ManufacturerStrIndex = 0x01,

0 commit comments

Comments
 (0)