Replacing Arduino VID / PID with the Atmel-supplied ones.

This commit is contained in:
David A. Mellis 2010-09-28 09:31:10 -04:00
parent 0768ebed50
commit e9a913066c
2 changed files with 4 additions and 4 deletions

View File

@ -53,8 +53,8 @@ USB_Descriptor_Device_t DeviceDescriptor =
.Endpoint0Size = FIXED_CONTROL_ENDPOINT_SIZE,
.VendorID = 0x03EB,
.ProductID = PRODUCT_ID_CODE,
.VendorID = 0x03EB, // Atmel
.ProductID = PRODUCT_ID_CODE, // MCU-dependent
.ReleaseNumber = 0x0000,
.ManufacturerStrIndex = NO_DESCRIPTOR,

View File

@ -65,9 +65,9 @@ USB_Descriptor_Device_t PROGMEM DeviceDescriptor =
.Endpoint0Size = FIXED_CONTROL_ENDPOINT_SIZE,
.VendorID = 0x2341,
.VendorID = 0x03EB, // Atmel
.ProductID = ARDUINO_MODEL_PID,
.ProductID = 0x2018, // PID_MegaCDC
.ReleaseNumber = 0x0000,
.ManufacturerStrIndex = 0x01,