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
This commit is contained in:
Victor 2024-04-06 18:48:15 -05:00
parent b8d990ee2e
commit 38e543a13c
Failed to generate hash of commit
2 changed files with 5 additions and 1 deletions

View file

@ -1,5 +1,5 @@
# override userspace defaults
RGB_MATRIX_ENABLE = yes
RGB_MATRIX_ENABLE = ws2812
OLED_ENABLE = yes
# override keyboard defaults

View file

@ -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