File tree 2 files changed +19
-3
lines changed
hardware/arduino/firmwares 2 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -13,5 +13,21 @@ avrdude -p at90usb82 -F -P usb -c avrispmkii -U flash:w:UNO-dfu_and_usbserial_co
13
13
To burn (Mega 2560):
14
14
avrdude -p at90usb82 -F -P usb -c avrispmkii -U flash:w:MEGA-dfu_and_usbserial_combined.hex -U lfuse:w:0xFF:m -U hfuse:w:0xD9:m -U efuse:w:0xF4:m -U lock:w:0x0F:m
15
15
16
- Please note that the Arduino VID and PIDs are only for use with official
17
- Arduino hardware and should not be used on other products.
16
+
17
+ Note on USB Vendor IDs (VID) and Product IDs (PID): The arduino-usbdfu
18
+ project uses Atmel's VID and MCU-specific PIDs to maintain compatibility
19
+ with their FLIP software. The source code to the arduino-usbserial
20
+ project includes Atmel's VID and a PID donated by them to LUFA. This
21
+ PID is used in LUFA's USBtoSerial project, which forms the basis for
22
+ arduino-usbserial. According to the LUFA documentation, this VID/PID
23
+ combination is:
24
+
25
+ "For use in testing of LUFA powered devices during development only,
26
+ by non-commercial entities. All devices must accept collisions on this
27
+ VID/PID range (from other in-development LUFA devices) to be resolved
28
+ by using a unique release number in the Device Descriptor. No devices
29
+ using this VID/PID combination may be released to the general public."
30
+
31
+ The production version of the arduino-usbserial firmware uses the
32
+ Arduino VID. This is only for use with official Arduino hardware and
33
+ should not be used on other products.
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ USB_Descriptor_Device_t PROGMEM DeviceDescriptor =
67
67
68
68
.VendorID = 0x03EB , // Atmel
69
69
70
- .ProductID = 0x2018 , // PID_MegaCDC
70
+ .ProductID = 0x204B , // LUFA USB to Serial Demo Application
71
71
.ReleaseNumber = 0x0000 ,
72
72
73
73
.ManufacturerStrIndex = 0x01 ,
You can’t perform that action at this time.
0 commit comments