mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
12 lines
272 B
Makefile
12 lines
272 B
Makefile
ifneq (,$(filter saul_default,$(USEMODULE)))
|
|
USEMODULE += saul_adc
|
|
USEMODULE += saul_gpio
|
|
endif
|
|
|
|
# default to mtd_mci if no other MTD backend is selected
|
|
ifneq (,$(filter mtd,$(USEMODULE)))
|
|
ifeq (,$(filter mtd_%,$(USEMODULE)))
|
|
USEMODULE += mtd_mci
|
|
endif
|
|
endif
|