1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:12:57 +01:00

drivers/ws281x: Fix dependencies

arch_esp32 was missing in FEATURES_REQUIRED_ANY for the ws281x, resulting in
ESP32 boards incorrectly being reported as unsupported.
This commit is contained in:
Marian Buschsieweke 2020-04-09 13:30:18 +02:00
parent 4e60eb9dd5
commit d3d2cdae8a
No known key found for this signature in database
GPG Key ID: 61F64C6599B1539F

View File

@ -794,7 +794,7 @@ ifneq (,$(filter ws281x_%,$(USEMODULE)))
endif
ifneq (,$(filter ws281x,$(USEMODULE)))
FEATURES_REQUIRED_ANY += arch_avr8|arch_native
FEATURES_REQUIRED_ANY += arch_avr8|arch_esp32|arch_native
ifeq (,$(filter ws281x_%,$(USEMODULE)))
ifneq (,$(filter arch_avr8,$(FEATURES_USED)))