diff options
| author | Scott Shawcroft <scott@chickadee.tech> | 2016-10-05 12:55:48 -0700 |
|---|---|---|
| committer | Scott Shawcroft <scott@chickadee.tech> | 2016-10-05 12:55:48 -0700 |
| commit | 90bf13efd5a6baed028b6478cf0230320e7f7e90 (patch) | |
| tree | fbb15e2d5fbcd7f162a94385b2fe3bb43f91bd5d | |
| parent | 9c676052333f45c74791ab30cc62b827631523f5 (diff) | |
atmel-samd: Correct USB PIDs.
Arduino and Adafruit convention is for user programs to have PIDs
starting with 8 and bootloaders starting with 0.
| -rw-r--r-- | atmel-samd/boards/arduino_zero/mpconfigboard.mk | 2 | ||||
| -rw-r--r-- | atmel-samd/boards/feather_m0_bluefruit_le/mpconfigboard.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/atmel-samd/boards/arduino_zero/mpconfigboard.mk b/atmel-samd/boards/arduino_zero/mpconfigboard.mk index 97e27229f..2ac97a332 100644 --- a/atmel-samd/boards/arduino_zero/mpconfigboard.mk +++ b/atmel-samd/boards/arduino_zero/mpconfigboard.mk @@ -1,3 +1,3 @@ LD_FILE = boards/samd21x18.ld USB_VID = 0x2341 -USB_PID = 0x024D +USB_PID = 0x824D diff --git a/atmel-samd/boards/feather_m0_bluefruit_le/mpconfigboard.mk b/atmel-samd/boards/feather_m0_bluefruit_le/mpconfigboard.mk index b98d45db8..d7f5c739b 100644 --- a/atmel-samd/boards/feather_m0_bluefruit_le/mpconfigboard.mk +++ b/atmel-samd/boards/feather_m0_bluefruit_le/mpconfigboard.mk @@ -1,3 +1,3 @@ LD_FILE = boards/samd21x18-bootloader.ld USB_VID = 0x239A -USB_PID = 0x000B +USB_PID = 0x8015 |
