1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-26 06:53:52 +01:00

tests/driver_netdev_common: add virtual board with IEEE802.15.4 drivers

This commit is contained in:
Leandro Lanzieri 2022-03-14 17:14:33 +01:00 committed by MrKevinWeiss
parent bacfe50893
commit 61f14145f4
No known key found for this signature in database
GPG Key ID: 4B69974722CBEEAE
4 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,6 @@
# This must be a different name than 'board' as it is implemented by 'nrf52840dk'
MODULE = board_nrf52840_ci_ieee802154
DIRS += $(RIOTBOARD)/nrf52840dk
include $(RIOTBASE)/Makefile.base

View File

@ -0,0 +1,7 @@
USEMODULE += board_nrf52840_ci_ieee802154
ifneq (,$(filter netdev_default,$(USEMODULE)))
USEMODULE += mrf24j40
endif
include $(RIOTBOARD)/nrf52840dk/Makefile.dep

View File

@ -0,0 +1 @@
include $(RIOTBOARD)/nrf52840dk/Makefile.features

View File

@ -0,0 +1,5 @@
# We must duplicate the include done by $(RIOTBASE)/Makefile.include
# to also include the main board header
INCLUDES += $(addprefix -I,$(wildcard $(RIOTBOARD)/nrf52840dk/include))
include $(RIOTBOARD)/nrf52840dk/Makefile.include