2022-02-09 14:25:04 +01:00
|
|
|
# This files contains dependencies for default modules. They are parsed at the
|
2023-10-16 12:17:48 +02:00
|
|
|
# end of the dependency loop. They MAY include new modules, but this modules
|
|
|
|
# MUST NOT have dependencies themselves.
|
2022-02-09 14:25:55 +01:00
|
|
|
|
2022-06-20 09:50:56 +02:00
|
|
|
ifneq (,$(filter auto_init%,$(USEMODULE)))
|
|
|
|
USEMODULE += preprocessor preprocessor_successor
|
|
|
|
endif
|
|
|
|
|
2022-02-09 14:25:55 +01:00
|
|
|
ifneq (,$(filter auto_init_ztimer,$(USEMODULE)))
|
|
|
|
USEMODULE += ztimer_init
|
|
|
|
endif
|
|
|
|
|
2022-02-09 14:27:43 +01:00
|
|
|
ifneq (,$(filter ztimer_auto_adjust,$(USEMODULE)))
|
|
|
|
USEMODULE += ztimer_overhead
|
|
|
|
endif
|
|
|
|
|
2022-02-09 14:25:55 +01:00
|
|
|
ifneq (,$(filter auto_init_saul,$(USEMODULE)))
|
|
|
|
USEMODULE += saul_init_devs
|
|
|
|
endif
|
2022-03-16 08:57:56 +01:00
|
|
|
|
2022-04-25 16:07:08 +02:00
|
|
|
ifneq (,$(filter auto_init_libcose_crypt,$(USEMODULE)))
|
|
|
|
USEMODULE += libcose_crypt_init
|
|
|
|
endif
|
|
|
|
|
2022-03-16 08:57:56 +01:00
|
|
|
ifneq (,$(filter xtimer,$(USEMODULE)))
|
|
|
|
ifeq (,$(filter ztimer_xtimer_compat,$(USEMODULE)))
|
|
|
|
USEMODULE += div
|
|
|
|
endif
|
|
|
|
endif
|