Skip to content

Commit

Permalink
drivers/ws281x: Fix dependencies
Browse files Browse the repository at this point in the history
arch_esp32 was missing in FEATURES_REQUIRED_ANY for the ws281x, resulting in
ESP32 boards incorrectly being reported as unsupported.
  • Loading branch information
maribu committed Apr 9, 2020
1 parent 4e60eb9 commit d3d2cda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/Makefile.dep
Expand Up @@ -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)))
Expand Down

0 comments on commit d3d2cda

Please sign in to comment.