1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
19515: drivers/servo: Fix missing dep r=maribu a=maribu

### Contribution description

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.

### Testing procedure

The app provided in https://github.com/RIOT-OS/RIOT/issues/19474 should now compile. (It does so for me.)

### Issues/PRs references

Fixes https://github.com/RIOT-OS/RIOT/issues/19474

Co-authored-by: Marian Buschsieweke <marian.buschsieweke@ovgu.de>
This commit is contained in:
bors[bot] 2023-04-26 13:34:12 +00:00 committed by GitHub
commit 36c5f2c7b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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