From 7ef1f7ed89f81ec9b888320f9d4b63f83fcf9fc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikolai=20G=C3=BCtschow?= Date: Thu, 27 Feb 2025 14:21:53 +0100 Subject: [PATCH] cpu/nrf52: do not select nrf52840 if nrfble is selected already --- cpu/nrf52/Makefile.nrf802154.dep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/nrf52/Makefile.nrf802154.dep b/cpu/nrf52/Makefile.nrf802154.dep index e04fe5b154..a9a99e4456 100644 --- a/cpu/nrf52/Makefile.nrf802154.dep +++ b/cpu/nrf52/Makefile.nrf802154.dep @@ -1,5 +1,5 @@ ifneq (,$(filter netdev_default,$(USEMODULE))) - ifeq (,$(filter nimble_% nrfmin,$(USEMODULE))) + ifeq (,$(filter nimble_% nrfmin nrfble,$(USEMODULE))) USEMODULE += nrf802154 endif endif