diff options
author | Zach Eveland <zeveland@blacklabel-development.com> | 2012-04-25 15:56:18 -0400 |
---|---|---|
committer | Zach Eveland <zeveland@blacklabel-development.com> | 2012-04-25 15:56:18 -0400 |
commit | d755d0035d4e3a816c127fd8207722bfe6629eee (patch) | |
tree | 5abcc668b7ce86cf538f6f3e6ad3c0221410251f /cores | |
parent | 6ae1a1723561266767ed1ba39ae61c35ea263162 (diff) |
changed PID values for Leonardo bootloader and sketch
done to avoid driver problems for users who installed the pre-release bootloader and driver
Diffstat (limited to 'cores')
-rw-r--r-- | cores/arduino/USBCore.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cores/arduino/USBCore.cpp b/cores/arduino/USBCore.cpp index 34c4372..9e89fd6 100644 --- a/cores/arduino/USBCore.cpp +++ b/cores/arduino/USBCore.cpp @@ -51,10 +51,10 @@ const u16 STRING_LANGUAGE[2] = { const u16 STRING_IPRODUCT[17] = { (3<<8) | (2+2*16), -#if USB_PID == 0x8034 +#if USB_PID == 0x8036 'A','r','d','u','i','n','o',' ','L','e','o','n','a','r','d','o' #else - 'U','S','B',' ','I','O',' ','B','O','A','R','D',' ',' ',' ',' ' + 'U','S','B',' ','I','O',' ','B','o','a','r','d',' ',' ',' ',' ' #endif }; |