1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/boards/common/silabs/Makefile.dep
Marian Buschsieweke 9893efd96f
boards/common/silabs: fix dependencies
The module silabs_pic depends on the feature periph_i2c. However, the
dependency resolution just selected the module implementing that
feature which bypasses feature checks.
2021-11-02 13:34:04 +01:00

4 lines
83 B
Makefile

ifneq (,$(filter silabs_pic,$(USEMODULE)))
FEATURES_REQUIRED += periph_i2c
endif