commit 099eaefb40b4a39820930bfee90284af9743ef09 parent 2886c335a0e8a9bb6b6549e648ece7e51519f787 Author: Ryan <fauxpark@gmail.com> Date: Thu, 30 Nov 2023 10:19:41 +1100 Add `APA102_LED_COUNT` define (#22530) Diffstat:
| M | drivers/led/apa102.h | | | 6 | ++++++ |
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/drivers/led/apa102.h b/drivers/led/apa102.h @@ -19,6 +19,12 @@ #include "color.h" +#if defined(RGBLED_NUM) +# define APA102_LED_COUNT RGBLED_NUM +#elif defined(RGB_MATRIX_LED_COUNT) +# define APA102_LED_COUNT RGB_MATRIX_LED_COUNT +#endif + #ifndef APA102_DEFAULT_BRIGHTNESS # define APA102_DEFAULT_BRIGHTNESS 31 #endif