From 38e543a13c48a1c4a4b47dd7fb3bd146b3f6e391 Mon Sep 17 00:00:00 2001 From: Victor Date: Sat, 6 Apr 2024 18:48:15 -0500 Subject: [PATCH] Had to define RGB Matrix driver - however it looks like I may have to update how I define RGB Matrix? - It is no longer just yes or no anymore --- keyboards/bluebell/swoop/keymaps/t4corun/rules.mk | 2 +- users/t4corun/rules.mk | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/keyboards/bluebell/swoop/keymaps/t4corun/rules.mk b/keyboards/bluebell/swoop/keymaps/t4corun/rules.mk index 617069f4..abc1537a 100644 --- a/keyboards/bluebell/swoop/keymaps/t4corun/rules.mk +++ b/keyboards/bluebell/swoop/keymaps/t4corun/rules.mk @@ -1,5 +1,5 @@ # override userspace defaults -RGB_MATRIX_ENABLE = yes +RGB_MATRIX_ENABLE = ws2812 OLED_ENABLE = yes # override keyboard defaults diff --git a/users/t4corun/rules.mk b/users/t4corun/rules.mk index 46209b39..cc3a6a6e 100644 --- a/users/t4corun/rules.mk +++ b/users/t4corun/rules.mk @@ -51,6 +51,10 @@ ifeq ($(strip $(RGB_MATRIX_ENABLE)), yes) SRC += features/rgbmatrix.c endif +ifeq ($(strip $(RGB_MATRIX_ENABLE)), ws2812) + SRC += features/rgbmatrix.c +endif + ifeq ($(strip $(MOUSEKEY_ENABLE)), yes) SRC += features/mouse.c