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

Merge pull request #16788 from benpicco/common/nrf52-netdev_default

boards/nrf52: replace gnrc_netdev_default with netdev_default
This commit is contained in:
Martine Lenders 2021-09-03 14:37:25 +02:00 committed by GitHub
commit 873f6936ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View File

@ -1,5 +1,7 @@
ifneq (,$(filter gnrc_netdev_default,$(USEMODULE)))
ifeq (,$(filter nrfmin nrf802154,$(USEMODULE)))
USEMODULE += nimble_netif
ifneq (,$(filter netdev_default,$(USEMODULE)))
ifneq (,$(filter gnrc,$(USEMODULE)))
ifeq (,$(filter nrfmin nrf802154,$(USEMODULE)))
USEMODULE += nimble_netif
endif
endif
endif

View File

@ -1,4 +1,4 @@
ifneq (,$(filter gnrc_netdev_default,$(USEMODULE)))
ifneq (,$(filter netdev_default,$(USEMODULE)))
ifeq (,$(filter nimble_% nrf802154,$(USEMODULE)))
USEMODULE += nrfmin
endif