diff options
author | Zach Eveland <zeveland@blacklabel-development.com> | 2012-01-10 21:23:01 -0500 |
---|---|---|
committer | Zach Eveland <zeveland@blacklabel-development.com> | 2012-01-10 21:23:01 -0500 |
commit | 73b46de27bb78a7aeb2066cde86a44bd313a8382 (patch) | |
tree | 512df2e33e74b7d66d49126646af183bd387f561 /bootloaders/caterina/src/Platform.h | |
parent | 385679caf2e6ad9502b5fe16f594225b8e82f890 (diff) |
made Leonardo and Micro bootloader PIDs same as sketch PIDs
Diffstat (limited to 'bootloaders/caterina/src/Platform.h')
-rw-r--r-- | bootloaders/caterina/src/Platform.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bootloaders/caterina/src/Platform.h b/bootloaders/caterina/src/Platform.h index 75e5bc3..26c1114 100644 --- a/bootloaders/caterina/src/Platform.h +++ b/bootloaders/caterina/src/Platform.h @@ -14,8 +14,8 @@ #define CPU_PRESCALE(n) (CLKPR = 0x80, CLKPR = (n)) #define DISABLE_JTAG() MCUCR = (1 << JTD) | (1 << IVCE) | (0 << PUD); MCUCR = (1 << JTD) | (0 << IVSEL) | (0 << IVCE) | (0 << PUD); -#define USB_PID_LEONARDO_BOOTLOADER 0x008D -#define USB_PID_MICRO_BOOTLOADER 0x0031 +#define USB_PID_LEONARDO_BOOTLOADER 0x0034 +#define USB_PID_MICRO_BOOTLOADER 0x0035 #define USB_VID 0x2341 // arduino LLC vid #define USB_PID ARDUINO_MODEL_PID // passed in by Makefile - 0x0034 for Leonardo, 0x0035 for MIcro |