Move RGB_MATRIX_DRIVER
to data driven (#20350)
This commit is contained in:
parent
10fc6c4cd6
commit
522048725f
833 changed files with 1250 additions and 437 deletions
|
@ -6,6 +6,9 @@
|
|||
"pid": "0xB04D",
|
||||
"device_version": "0.0.1"
|
||||
},
|
||||
"led_matrix": {
|
||||
"driver": "IS31FL3731"
|
||||
},
|
||||
"matrix_pins": {
|
||||
"cols": ["D1", "D4", "D5", "D6", "D7"],
|
||||
"rows": ["B2", "B3", "B18", "B19", "C0", "C9", "C10", "C11", "D0"]
|
||||
|
|
|
@ -19,4 +19,3 @@ SERIAL_DRIVER = usart
|
|||
ST7565_ENABLE = yes
|
||||
|
||||
LED_MATRIX_ENABLE = yes
|
||||
LED_MATRIX_DRIVER = IS31FL3731
|
||||
|
|
|
@ -8,6 +8,9 @@
|
|||
"pid": "0xB04D",
|
||||
"device_version": "0.0.1"
|
||||
},
|
||||
"rgb_matrix": {
|
||||
"driver": "custom"
|
||||
},
|
||||
"matrix_pins": {
|
||||
"cols": ["B2", "B3", "B18", "B19", "C0", "C8", "C9", "D0", "D1", "D4"],
|
||||
"rows": ["D5", "D6", "D7", "C1", "C2", "C3", "C4", "C5", "C6", "C7"]
|
||||
|
|
|
@ -13,7 +13,6 @@ AUDIO_ENABLE = no # Audio output
|
|||
|
||||
# RGB options
|
||||
RGB_MATRIX_ENABLE = no
|
||||
RGB_MATRIX_DRIVER = custom
|
||||
|
||||
# Additional files for RGB lighting
|
||||
SRC += k_type-rgbdriver.c
|
||||
|
|
|
@ -7,6 +7,9 @@
|
|||
"pid": "0xB04D",
|
||||
"device_version": "0.0.1"
|
||||
},
|
||||
"led_matrix": {
|
||||
"driver": "IS31FL3731"
|
||||
},
|
||||
"matrix_pins": {
|
||||
"cols": ["B2", "B3", "B18", "B19", "C0", "C8", "C9", "C10", "C11"],
|
||||
"rows": ["D0", "D1", "D4", "D5", "D6", "D7", "C1", "C2"]
|
||||
|
|
|
@ -11,7 +11,6 @@ RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
|
|||
AUDIO_ENABLE = no # Audio output
|
||||
|
||||
LED_MATRIX_ENABLE = yes
|
||||
LED_MATRIX_DRIVER = IS31FL3731
|
||||
|
||||
# Enter lower-power sleep mode when on the ChibiOS idle thread
|
||||
OPT_DEFS += -DCORTEX_ENABLE_WFI_IDLE=TRUE
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue