mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-05-05 23:24:17 -04:00
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:
parent
b8d990ee2e
commit
38e543a13c
2 changed files with 5 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
# override userspace defaults
|
# override userspace defaults
|
||||||
RGB_MATRIX_ENABLE = yes
|
RGB_MATRIX_ENABLE = ws2812
|
||||||
OLED_ENABLE = yes
|
OLED_ENABLE = yes
|
||||||
|
|
||||||
# override keyboard defaults
|
# override keyboard defaults
|
||||||
|
|
|
@ -51,6 +51,10 @@ ifeq ($(strip $(RGB_MATRIX_ENABLE)), yes)
|
||||||
SRC += features/rgbmatrix.c
|
SRC += features/rgbmatrix.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(strip $(RGB_MATRIX_ENABLE)), ws2812)
|
||||||
|
SRC += features/rgbmatrix.c
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
ifeq ($(strip $(MOUSEKEY_ENABLE)), yes)
|
ifeq ($(strip $(MOUSEKEY_ENABLE)), yes)
|
||||||
SRC += features/mouse.c
|
SRC += features/mouse.c
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue