mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
28 lines
582 B
Makefile
28 lines
582 B
Makefile
INCLUDES += -I$(APPDIR)
|
|
BOARD ?= samr21-xpro
|
|
|
|
include ../Makefile.drivers_common
|
|
|
|
USEMODULE += test_utils_netdev_ieee802154_minimal
|
|
|
|
# define the driver to be used for selected boards
|
|
ifneq (,$(filter samr21-xpro,$(BOARD)))
|
|
DRIVER := at86rf233
|
|
endif
|
|
ifneq (,$(filter iotlab-m3,$(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 += -DEVENT_THREAD_STACKSIZE_DEFAULT=1024
|
|
|
|
include $(RIOTBASE)/Makefile.include
|