2015-04-23 18:56:43 +02:00
|
|
|
include ../Makefile.tests_common
|
|
|
|
|
2017-04-05 17:16:29 +02:00
|
|
|
# exclude boards with insufficient memory
|
2019-05-24 17:36:06 +02:00
|
|
|
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \
|
|
|
|
arduino-uno nucleo-f031k6
|
2017-04-05 17:16:29 +02:00
|
|
|
|
2016-01-25 00:17:49 +01:00
|
|
|
DISABLE_MODULE += auto_init
|
2015-04-23 18:56:43 +02:00
|
|
|
|
2016-01-25 00:17:49 +01:00
|
|
|
USEMODULE += od
|
2015-11-03 15:27:24 +01:00
|
|
|
USEMODULE += shell
|
|
|
|
USEMODULE += shell_commands
|
|
|
|
USEMODULE += ps
|
|
|
|
|
2015-11-13 16:33:50 +01:00
|
|
|
# define the driver to be used for selected boards
|
2015-05-08 15:50:35 +02:00
|
|
|
ifneq (,$(filter samr21-xpro,$(BOARD)))
|
2015-11-13 16:33:50 +01:00
|
|
|
DRIVER := at86rf233
|
2015-04-23 18:56:43 +02:00
|
|
|
endif
|
2015-11-03 15:27:24 +01:00
|
|
|
ifneq (,$(filter iotlab-m3 fox,$(BOARD)))
|
2015-11-13 16:33:50 +01:00
|
|
|
DRIVER := at86rf231
|
2015-04-23 18:56:43 +02:00
|
|
|
endif
|
2015-11-13 16:33:50 +01:00
|
|
|
ifneq (,$(filter mulle,$(BOARD)))
|
|
|
|
DRIVER := at86rf212b
|
2015-11-03 15:27:24 +01:00
|
|
|
endif
|
|
|
|
|
2015-11-13 16:33:50 +01:00
|
|
|
# use the at86rf231 as fallback device
|
|
|
|
DRIVER ?= at86rf231
|
|
|
|
|
|
|
|
# include the selected driver
|
2015-11-03 15:27:24 +01:00
|
|
|
USEMODULE += $(DRIVER)
|
2015-05-08 15:50:35 +02:00
|
|
|
|
2015-04-23 18:56:43 +02:00
|
|
|
include $(RIOTBASE)/Makefile.include
|