diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-05-20 14:50:26 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-05-20 14:50:26 +0000 |
commit | b3a4d8512bcaf0feba16a3cbeeaabfcfeb9cf051 (patch) | |
tree | 69cb70f073b336a19d0f11f5bbebc4ffd3a48984 /Demos | |
parent | 59becad82f18c158063ef450d65fefa332857e86 (diff) | |
download | lufa-b3a4d8512bcaf0feba16a3cbeeaabfcfeb9cf051.tar.gz lufa-b3a4d8512bcaf0feba16a3cbeeaabfcfeb9cf051.tar.bz2 lufa-b3a4d8512bcaf0feba16a3cbeeaabfcfeb9cf051.zip |
Fixed incorrect PID value being used in the USBtoSerial project (thanks to Phill).
Diffstat (limited to 'Demos')
-rw-r--r-- | Demos/Device/USBtoSerial/Descriptors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/Device/USBtoSerial/Descriptors.c b/Demos/Device/USBtoSerial/Descriptors.c index d5ab8b754..ddb90bb8c 100644 --- a/Demos/Device/USBtoSerial/Descriptors.c +++ b/Demos/Device/USBtoSerial/Descriptors.c @@ -54,7 +54,7 @@ USB_Descriptor_Device_t PROGMEM DeviceDescriptor = .Endpoint0Size = FIXED_CONTROL_ENDPOINT_SIZE,
.VendorID = 0x03EB,
- .ProductID = 0x2044,
+ .ProductID = 0x204B,
.ReleaseNumber = 0x0000,
.ManufacturerStrIndex = 0x01,
|