1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/emb6/Makefile

39 lines
901 B
Makefile
Raw Normal View History

# overwrite board, do not set native as default
BOARD ?= samr21-xpro
include ../Makefile.tests_common
2016-02-07 19:52:31 +01:00
2016-10-27 17:49:34 +02:00
# MSP-430 doesn't support C11's atomic functionality yet
FEATURES_BLACKLIST += arch_msp430
2016-10-27 17:49:34 +02:00
USEPKG += emb6
2016-02-07 19:52:31 +01:00
USEMODULE += emb6_router
2016-10-27 17:49:34 +02:00
USEMODULE += emb6_sock_udp
2016-02-07 19:52:31 +01:00
USEMODULE += ipv6_addr
USEMODULE += shell
USEMODULE += shell_commands
USEMODULE += ps
USEMODULE += od
# 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)
CFLAGS += -Wno-unused-parameter -Wno-unused-function -Wno-type-limits
CFLAGS += -Wno-sign-compare -Wno-missing-field-initializers
2016-02-07 19:52:31 +01:00
include $(RIOTBASE)/Makefile.include