mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
12 lines
389 B
Makefile
12 lines
389 B
Makefile
ifneq (,$(filter saul_default,$(USEMODULE)))
|
|
USEMODULE += saul_nrf_temperature
|
|
endif
|
|
|
|
ifneq (,$(findstring nrf52832, $(CPU_MODEL)))
|
|
# include common nrf52832 dependencies
|
|
include $(RIOTBOARD)/common/nrf52/nrf52832/Makefile.dep
|
|
else ifneq (,$(findstring nrf52840, $(CPU_MODEL)))
|
|
# include common nrf52840 dependencies
|
|
include $(RIOTBOARD)/common/nrf52/nrf52840/Makefile.dep
|
|
endif
|