mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
0e90e6195f
Added arduino-nano to BOARD_INSUFFICIENT_MEMORY/BOARD_BLACKLIST following suit of how arduino-uno is marked, as arduino-nano is mostly an Uno in a different form factor.
32 lines
709 B
Makefile
32 lines
709 B
Makefile
include ../Makefile.tests_common
|
|
|
|
# exclude boards with insufficient memory
|
|
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
|
|
nucleo-f031k6
|
|
|
|
DISABLE_MODULE += auto_init
|
|
|
|
USEMODULE += od
|
|
USEMODULE += shell
|
|
USEMODULE += shell_commands
|
|
USEMODULE += ps
|
|
|
|
# define the driver to be used for selected boards
|
|
ifneq (,$(filter samr21-xpro,$(BOARD)))
|
|
DRIVER := at86rf233
|
|
endif
|
|
ifneq (,$(filter iotlab-m3 fox,$(BOARD)))
|
|
DRIVER := at86rf231
|
|
endif
|
|
ifneq (,$(filter mulle,$(BOARD)))
|
|
DRIVER := at86rf212b
|
|
endif
|
|
|
|
# use the at86rf231 as fallback device
|
|
DRIVER ?= at86rf231
|
|
|
|
# include the selected driver
|
|
USEMODULE += $(DRIVER)
|
|
|
|
include $(RIOTBASE)/Makefile.include
|