diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-02-08 18:29:17 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-02-08 18:29:17 +0000 |
commit | 18b82b3575162c2c6d462c8f34a7d942f77a88ec (patch) | |
tree | 455e1dc57265a77b4ee653b01d3a5d859b2f7bc7 /Projects/AVRISP-MKII/Descriptors.c | |
parent | 1482f7782644a8707840508e617be21933cef0bc (diff) | |
download | lufa-18b82b3575162c2c6d462c8f34a7d942f77a88ec.tar.gz lufa-18b82b3575162c2c6d462c8f34a7d942f77a88ec.tar.bz2 lufa-18b82b3575162c2c6d462c8f34a7d942f77a88ec.zip |
Updated the AVRISP-MKII Clone programmer project to be compatible with the latest version of AVR Studio (version 5.1).
Changed the AVRISP-MKII Clone programmer project to report a fixed 3.3V VTARGET voltage on USB AVRs lacking an ADC instead of 5V to prevent warnings in AVR Studio 5.1 when programming XMEGA devices.
Diffstat (limited to 'Projects/AVRISP-MKII/Descriptors.c')
-rw-r--r-- | Projects/AVRISP-MKII/Descriptors.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Projects/AVRISP-MKII/Descriptors.c b/Projects/AVRISP-MKII/Descriptors.c index 9b01e9cd7..12f44f9e2 100644 --- a/Projects/AVRISP-MKII/Descriptors.c +++ b/Projects/AVRISP-MKII/Descriptors.c @@ -140,9 +140,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(5), .Type = DTYPE_String}, - .UnicodeString = L"Dean Camera" + .UnicodeString = L"ATMEL" }; /** Product descriptor string. This is a Unicode string containing the product's details in human readable form, @@ -151,9 +151,9 @@ const USB_Descriptor_String_t PROGMEM ManufacturerString = */ const USB_Descriptor_String_t PROGMEM ProductString = { - .Header = {.Size = USB_STRING_LEN(22), .Type = DTYPE_String}, + .Header = {.Size = USB_STRING_LEN(11), .Type = DTYPE_String}, - .UnicodeString = L"LUFA AVRISP MkII Clone" + .UnicodeString = L"AVRISP mkII" }; /** Serial number string. This is a Unicode string containing the device's unique serial number, expressed as a @@ -162,8 +162,8 @@ const USB_Descriptor_String_t PROGMEM ProductString = const USB_Descriptor_String_t PROGMEM SerialString = { .Header = {.Size = USB_STRING_LEN(13), .Type = DTYPE_String}, - - .UnicodeString = L"0000A00128255" + + .UnicodeString = L"000200012345\0" // Note: Real AVRISP-MKII has the embedded NUL byte, bug in firmware? }; /** This function is called by the library when in device mode, and must be overridden (see library "USB Descriptors" |