Skip to content

Commit 883d138

Browse files
committed
pkg: don't align nrf53 features on nrf51/nrf52
Signed-off-by: Dylan Laduranty <[email protected]>
1 parent b050ad3 commit 883d138

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

pkg/mynewt-core/Makefile.include

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ INCLUDES += -I$(RIOTPKG)/mynewt-core/include \
88
DIRS += $(RIOTPKG)/mynewt-core/contrib \
99
#
1010

11-
ifneq (,$(filter nrf5%,$(CPU)))
11+
ifneq (,$(filter nrf51 nrf52,$(CPU)))
1212
# OS_CPUTIME is set to 32.767 Hz
1313
CFLAGS += -DMYNEWT_VAL_OS_CPUTIME_FREQ=32768
1414
else

pkg/mynewt-core/contrib/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ MODULE = mynewt-core
33
# exclude submodule sources from *.c wildcard source selection
44
SRC := $(filter-out nrf5x_isr.c cputime.c,$(wildcard *.c))
55

6-
ifneq (,$(filter nrf5%,$(CPU)))
6+
ifneq (,$(filter nrf51 nrf52,$(CPU)))
77
SRC += nrf5x_isr.c
88
else
99
SRC += cputime.c

pkg/mynewt-core/mynewt-core_os.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ SRC := \
88
os_cputime_pwr2.c \
99
#
1010

11-
ifneq (,$(filter nrf5%,$(CPU)))
11+
ifneq (,$(filter nrf51 nrf52,$(CPU)))
1212
SRC += os_cputime.c
1313
endif
1414

pkg/nimble/Makefile.dep

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ endif
5353

5454
# nimble controller dependencies
5555
ifneq (,$(filter nimble_controller,$(USEMODULE)))
56-
ifneq (,$(filter nrf5%,$(CPU_FAM)))
56+
ifneq (,$(filter nrf51 nrf52,$(CPU_FAM)))
5757
USEMODULE += nimble_drivers_nrf5x
5858
endif
5959
endif

pkg/uwb-core/Makefile.dep

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ endif
1919
ifneq (,$(filter uwb-core_dpl,$(USEMODULE)))
2020
USEPKG += mynewt-core
2121
USEMODULE += mynewt-core_os
22-
ifneq (,$(filter nrf5%,$(CPU)))
22+
# don't pull nrf53 into the list
23+
ifneq (,$(filter nrf51 nrf52,$(CPU)))
2324
USEMODULE += mynewt-core_nrf5x_hal
2425
endif
2526
endif

0 commit comments

Comments
 (0)