mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Alexandre Abadie
17be6a32c9
There's no sense in having nrf52dk by default since its MCU, nrf52832, doesn't have support for 802.15.4 radio
16 lines
302 B
Makefile
16 lines
302 B
Makefile
INCLUDES += -I$(APPDIR)
|
|
BOARD ?= nrf52840dk
|
|
|
|
include ../Makefile.drivers_common
|
|
|
|
USEMODULE += test_utils_netdev_ieee802154_minimal
|
|
|
|
# select the driver to test
|
|
USEMODULE += nrf802154
|
|
|
|
FEATURES_REQUIRED += cpu_nrf52
|
|
|
|
CFLAGS += -DEVENT_THREAD_STACKSIZE_DEFAULT=1024
|
|
|
|
include $(RIOTBASE)/Makefile.include
|