1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-16 17:12:45 +01:00
RIOT/boards/common/nrf52/Makefile.nimble.dep
Benjamin Valentin 702c3435a8 boards/nrf52: replace gnrc_netdev_default with netdev_default
Only nimble depends on GNRC, but we want to replace gnrc_netdev_default
with netdev_default, so check for gnrc instead.
2021-09-02 14:36:22 +02:00

8 lines
194 B
Makefile

ifneq (,$(filter netdev_default,$(USEMODULE)))
ifneq (,$(filter gnrc,$(USEMODULE)))
ifeq (,$(filter nrfmin nrf802154,$(USEMODULE)))
USEMODULE += nimble_netif
endif
endif
endif