mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
drivers/servo: Fix missing dep
The servo test app uses `USEMODULE += servo` and lets the build system pick automatically the best suitable backend. If one explicitly chooses a backend e.g. via `USEMODULE += servo_timer`, this currently requires adding `USEMODULE += servo` in addition. This commit fixes the issue. Fixes https://github.com/RIOT-OS/RIOT/issues/19474
This commit is contained in:
parent
5c8e3c7c93
commit
c0a614d896
@ -176,6 +176,10 @@ ifneq (,$(filter sdp3x_%,$(USEMODULE)))
|
|||||||
USEMODULE += sdp3x
|
USEMODULE += sdp3x
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifneq (,$(filter servo_%,$(USEMODULE)))
|
||||||
|
USEMODULE += servo
|
||||||
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter sht1%,$(USEMODULE)))
|
ifneq (,$(filter sht1%,$(USEMODULE)))
|
||||||
USEMODULE += sht1x
|
USEMODULE += sht1x
|
||||||
endif
|
endif
|
||||||
|
Loading…
Reference in New Issue
Block a user