You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
APPLICATION = emb6 |
|
# overwrite board, do not set native as default |
|
BOARD ?= samr21-xpro |
|
include ../Makefile.tests_common |
|
|
|
FEATURES_REQUIRED = periph_gpio periph_spi # for at86rf231 |
|
|
|
# MSP-430 doesn't support C11's atomic functionality yet |
|
BOARD_BLACKLIST := msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1 |
|
|
|
BOARD_INSUFFICIENT_MEMORY := msb-430 msb-430h nucleo32-l031 nucleo32-f031 \ |
|
nucleo32-f042 nucleo-l053 stm32f0discovery telosb \ |
|
weio wsn430-v1_3b wsn430-v1_4 z1 |
|
|
|
USEPKG += emb6 |
|
|
|
USEMODULE += emb6_router |
|
USEMODULE += emb6_sock_udp |
|
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) |
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|