1
0
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:
Marian Buschsieweke 2023-04-26 15:15:53 +02:00
parent 5c8e3c7c93
commit c0a614d896
No known key found for this signature in database
GPG Key ID: CB8E3238CE715A94

View File

@ -176,6 +176,10 @@ ifneq (,$(filter sdp3x_%,$(USEMODULE)))
USEMODULE += sdp3x
endif
ifneq (,$(filter servo_%,$(USEMODULE)))
USEMODULE += servo
endif
ifneq (,$(filter sht1%,$(USEMODULE)))
USEMODULE += sht1x
endif