From e9da0905f04b5f6ff743e5153ea92a86502f4aea Mon Sep 17 00:00:00 2001 From: Doug Brown Date: Mon, 21 May 2012 19:52:49 -0700 Subject: [PATCH] Changed USB vendor/product IDs to use the ones I got. --- Descriptors.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Descriptors.c b/Descriptors.c index d005f10..c49f2f5 100644 --- a/Descriptors.c +++ b/Descriptors.c @@ -65,9 +65,9 @@ const USB_Descriptor_Device_t PROGMEM DeviceDescriptor = .Endpoint0Size = FIXED_CONTROL_ENDPOINT_SIZE, - .VendorID = 0x03EB, - .ProductID = 0x204B, - .ReleaseNumber = VERSION_BCD(00.02), + .VendorID = 0x16D0, + .ProductID = 0x06AA, + .ReleaseNumber = VERSION_BCD(00.01), .ManufacturerStrIndex = 0x01, .ProductStrIndex = 0x02, @@ -203,9 +203,9 @@ const USB_Descriptor_String_t PROGMEM LanguageString = */ const USB_Descriptor_String_t PROGMEM ManufacturerString = { - .Header = {.Size = USB_STRING_LEN(11), .Type = DTYPE_String}, + .Header = {.Size = USB_STRING_LEN(10), .Type = DTYPE_String}, - .UnicodeString = L"Dean Camera" + .UnicodeString = L"Doug Brown" }; /** Product descriptor string. This is a Unicode string containing the product's details in human readable form, @@ -216,7 +216,7 @@ const USB_Descriptor_String_t PROGMEM ProductString = { .Header = {.Size = USB_STRING_LEN(23), .Type = DTYPE_String}, - .UnicodeString = L"LUFA USB-RS232 Adapter" + .UnicodeString = L"Mac ROM SIMM Programmer" }; /** This function is called by the library when in device mode, and must be overridden (see library "USB Descriptors"