|
|
|
@ -1,5 +1,25 @@
|
|
|
|
|
#
|
|
|
|
|
# LUFA Library
|
|
|
|
|
# Copyright (C) Dean Camera, 2012.
|
|
|
|
|
#
|
|
|
|
|
# dean [at] fourwalledcubicle [dot] com
|
|
|
|
|
# www.lufa-lib.org
|
|
|
|
|
#
|
|
|
|
|
#
|
|
|
|
|
# =============================================================================
|
|
|
|
|
# Board configuration map script, processed with the "BoardDriverTest"
|
|
|
|
|
# makefile. This script file maps the possible LUFA target BOARD makefile
|
|
|
|
|
# value in user projects to a specific architecture and device. This mapping is
|
|
|
|
|
# then used by the makefile to build all possible drivers for that board, to
|
|
|
|
|
# detect any missing or erroneous functions. To add a new board mapping, use
|
|
|
|
|
# the syntax:
|
|
|
|
|
#
|
|
|
|
|
# BOARD DEFINE = {ARCH} : {MCU} :
|
|
|
|
|
#
|
|
|
|
|
# And re-run the makefile. Note that each board may have only one target.
|
|
|
|
|
# =============================================================================
|
|
|
|
|
#
|
|
|
|
|
#
|
|
|
|
|
BOARD_USER = avr8 : at90usb1287 :
|
|
|
|
|
BOARD_NONE = avr8 : at90usb1287 :
|
|
|
|
|
BOARD_USBKEY = avr8 : at90usb1287 :
|
|
|
|
|