diff options
author | Zach Eveland <zeveland@blacklabel-development.com> | 2011-10-31 23:44:32 -0400 |
---|---|---|
committer | Zach Eveland <zeveland@blacklabel-development.com> | 2011-10-31 23:44:32 -0400 |
commit | 75cc55d91770573ab42670b4fe0fb6d4d13a9474 (patch) | |
tree | 25b82c297ec71323c6ad38663be2a7773f981e27 /bootloaders/diskloader/src/Platform.h | |
parent | 61b03fc98534a48609daf479f150a71bbc607f55 (diff) |
changed Leonardo PID to 0x0032 for Diskloader testing. updated .inf to match.
Diffstat (limited to 'bootloaders/diskloader/src/Platform.h')
-rw-r--r-- | bootloaders/diskloader/src/Platform.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bootloaders/diskloader/src/Platform.h b/bootloaders/diskloader/src/Platform.h index f1194a5..d1f884c 100644 --- a/bootloaders/diskloader/src/Platform.h +++ b/bootloaders/diskloader/src/Platform.h @@ -25,10 +25,10 @@ typedef unsigned char u8; typedef unsigned short u16; typedef unsigned long u32; -#define USB_PID_LEONARDO 0x0034 -#define USB_PID_MICRO 0x0035 +#define USB_PID_LEONARDO 0x0032 +#define USB_PID_MICRO 0x0033 #define USB_VID 0x2341 // arduino LLC vid -#define USB_PID ARDUINO_MODEL_PID // passed in by Makefile - 0x0034 for Leonardo, 0x0035 for MIcro +#define USB_PID ARDUINO_MODEL_PID // passed in by Makefile - 0x0032 for Leonardo, 0x0033 for Micro #define min(a,b) ((a)<(b)?(a):(b)) |