aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2016-04-03 17:26:37 +1000
committerDean Camera <dean@fourwalledcubicle.com>2016-04-03 17:26:37 +1000
commit75b68126d01306347626215ec8ad1537c903e4cd (patch)
treecbe965ccfca28da7beedea16e4cf24e890789e34
parente3ff5516598e8d9258b7ce17f5ecb9496a93cd46 (diff)
downloadlufa-75b68126d01306347626215ec8ad1537c903e4cd.tar.gz
lufa-75b68126d01306347626215ec8ad1537c903e4cd.tar.bz2
lufa-75b68126d01306347626215ec8ad1537c903e4cd.zip
Add missing BOARD_POLOLUMICRO definition.
-rw-r--r--BuildTests/BoardDriverTest/BoardDeviceMap.cfg1
-rw-r--r--LUFA/Common/BoardTypes.h5
2 files changed, 5 insertions, 1 deletions
diff --git a/BuildTests/BoardDriverTest/BoardDeviceMap.cfg b/BuildTests/BoardDriverTest/BoardDeviceMap.cfg
index 18a502f58..096d88998 100644
--- a/BuildTests/BoardDriverTest/BoardDeviceMap.cfg
+++ b/BuildTests/BoardDriverTest/BoardDeviceMap.cfg
@@ -73,6 +73,7 @@ BOARD_STANGE_ISP = AVR8 : at90usb162 :
BOARD_U2S = AVR8 : atmega32u2 :
BOARD_YUN = AVR8 : atmega32u4 :
BOARD_MICRO = AVR8 : atmega32u4 :
+BOARD_POLOLUMICRO = AVR8 : atmega32u4 :
BOARD_XPLAINED_MINI = AVR8 : atmega32u4 :
#
# ----------------- XMEGA Boards -----------------
diff --git a/LUFA/Common/BoardTypes.h b/LUFA/Common/BoardTypes.h
index 2c1ea7ba3..212374ff3 100644
--- a/LUFA/Common/BoardTypes.h
+++ b/LUFA/Common/BoardTypes.h
@@ -240,8 +240,11 @@
/** Selects the Arduino Micro specific board drivers, including the driver for the board LEDs. */
#define BOARD_MICRO 58
+ /** Selects the Pololu A-Star Micro specific board drivers, including the driver for the board LEDs. */
+ #define BOARD_POLOLUMICRO 59
+
/** Selects the Atmel Xplained-MINI specific board drivers, including the driver for the board LEDs. */
- #define BOARD_XPLAINED_MINI 59
+ #define BOARD_XPLAINED_MINI 60
#if !defined(__DOXYGEN__)
#define BOARD_ BOARD_NONE