diff options
240 files changed, 248 insertions, 246 deletions
diff --git a/docs/feature_led_matrix.md b/docs/feature_led_matrix.md index b1ce09d349..d803fcf101 100644 --- a/docs/feature_led_matrix.md +++ b/docs/feature_led_matrix.md | |||
| @@ -54,7 +54,7 @@ For split keyboards using `LED_MATRIX_SPLIT` with an LED driver, you can either | |||
| 54 | Define these arrays listing all the LEDs in your `<keyboard>.c`: | 54 | Define these arrays listing all the LEDs in your `<keyboard>.c`: |
| 55 | 55 | ||
| 56 | ```c | 56 | ```c |
| 57 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[LED_MATRIX_LED_COUNT] = { | 57 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 58 | /* Refer to IS31 manual for these locations | 58 | /* Refer to IS31 manual for these locations |
| 59 | * driver | 59 | * driver |
| 60 | * | LED address | 60 | * | LED address |
diff --git a/docs/feature_rgb_matrix.md b/docs/feature_rgb_matrix.md index 824ff50648..53e387ee70 100644 --- a/docs/feature_rgb_matrix.md +++ b/docs/feature_rgb_matrix.md | |||
| @@ -55,7 +55,7 @@ For split keyboards using `RGB_MATRIX_SPLIT` with an LED driver, you can either | |||
| 55 | Define these arrays listing all the LEDs in your `<keyboard>.c`: | 55 | Define these arrays listing all the LEDs in your `<keyboard>.c`: |
| 56 | 56 | ||
| 57 | ```c | 57 | ```c |
| 58 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 58 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 59 | /* Refer to IS31 manual for these locations | 59 | /* Refer to IS31 manual for these locations |
| 60 | * driver | 60 | * driver |
| 61 | * | R location | 61 | * | R location |
| @@ -139,7 +139,7 @@ Currently only 4 drivers are supported, but it would be trivial to support all 8 | |||
| 139 | Define these arrays listing all the LEDs in your `<keyboard>.c`: | 139 | Define these arrays listing all the LEDs in your `<keyboard>.c`: |
| 140 | 140 | ||
| 141 | ```c | 141 | ```c |
| 142 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 142 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 143 | /* Refer to IS31 manual for these locations | 143 | /* Refer to IS31 manual for these locations |
| 144 | * driver | 144 | * driver |
| 145 | * | R location | 145 | * | R location |
| @@ -218,7 +218,7 @@ Here is an example using 2 drivers. | |||
| 218 | Define these arrays listing all the LEDs in your `<keyboard>.c`: | 218 | Define these arrays listing all the LEDs in your `<keyboard>.c`: |
| 219 | 219 | ||
| 220 | ```c | 220 | ```c |
| 221 | const is31fl3736_led_t PROGMEM g_is31fl3736_leds[RGB_MATRIX_LED_COUNT] = { | 221 | const is31fl3736_led_t PROGMEM g_is31fl3736_leds[IS31FL3736_LED_COUNT] = { |
| 222 | /* Refer to IS31 manual for these locations | 222 | /* Refer to IS31 manual for these locations |
| 223 | * driver | 223 | * driver |
| 224 | * | R location | 224 | * | R location |
| @@ -292,7 +292,7 @@ Here is an example using 2 drivers. | |||
| 292 | Define these arrays listing all the LEDs in your `<keyboard>.c`: | 292 | Define these arrays listing all the LEDs in your `<keyboard>.c`: |
| 293 | 293 | ||
| 294 | ```c | 294 | ```c |
| 295 | const is31fl3737_led_t PROGMEM g_is31fl3737_leds[RGB_MATRIX_LED_COUNT] = { | 295 | const is31fl3737_led_t PROGMEM g_is31fl3737_leds[IS31FL3737_LED_COUNT] = { |
| 296 | /* Refer to IS31 manual for these locations | 296 | /* Refer to IS31 manual for these locations |
| 297 | * driver | 297 | * driver |
| 298 | * | R location | 298 | * | R location |
| @@ -501,7 +501,7 @@ Here is an example using 2 drivers. | |||
| 501 | Define these arrays listing all the LEDs in your `<keyboard>.c`: | 501 | Define these arrays listing all the LEDs in your `<keyboard>.c`: |
| 502 | 502 | ||
| 503 | ```c | 503 | ```c |
| 504 | const aw20216s_led_t PROGMEM g_aw20216s_leds[RGB_MATRIX_LED_COUNT] = { | 504 | const aw20216s_led_t PROGMEM g_aw20216s_leds[AW20216S_LED_COUNT] = { |
| 505 | /* Each AW20216S channel is controlled by a register at some offset between 0x00 | 505 | /* Each AW20216S channel is controlled by a register at some offset between 0x00 |
| 506 | * and 0xD7 inclusive. | 506 | * and 0xD7 inclusive. |
| 507 | * See drivers/led/aw20216s.h for the mapping between register offsets and | 507 | * See drivers/led/aw20216s.h for the mapping between register offsets and |
diff --git a/drivers/led/issi/is31fl3218-simple.c b/drivers/led/issi/is31fl3218-simple.c index e58b7d8bc0..d9faa8677d 100644 --- a/drivers/led/issi/is31fl3218-simple.c +++ b/drivers/led/issi/is31fl3218-simple.c | |||
| @@ -13,7 +13,7 @@ | |||
| 13 | * You should have received a copy of the GNU General Public License | 13 | * You should have received a copy of the GNU General Public License |
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | */ | 15 | */ |
| 16 | #include "is31fl3218.h" | 16 | #include "is31fl3218-simple.h" |
| 17 | #include <string.h> | 17 | #include <string.h> |
| 18 | #include "i2c_master.h" | 18 | #include "i2c_master.h" |
| 19 | 19 | ||
diff --git a/drivers/led/issi/is31fl3733-simple.c b/drivers/led/issi/is31fl3733-simple.c index 805905ebc2..889d9ef389 100644 --- a/drivers/led/issi/is31fl3733-simple.c +++ b/drivers/led/issi/is31fl3733-simple.c | |||
| @@ -43,7 +43,7 @@ | |||
| 43 | #endif | 43 | #endif |
| 44 | 44 | ||
| 45 | #ifndef IS31FL3733_CS_PULLDOWN | 45 | #ifndef IS31FL3733_CS_PULLDOWN |
| 46 | # define IS31FL3733_CSPULLDOWN IS31FL3733_PDR_0_OHM | 46 | # define IS31FL3733_CS_PULLDOWN IS31FL3733_PDR_0_OHM |
| 47 | #endif | 47 | #endif |
| 48 | 48 | ||
| 49 | #ifndef IS31FL3733_GLOBAL_CURRENT | 49 | #ifndef IS31FL3733_GLOBAL_CURRENT |
diff --git a/drivers/led/issi/is31fl3736.c b/drivers/led/issi/is31fl3736.c index 384b815850..0d7b08e7e8 100644 --- a/drivers/led/issi/is31fl3736.c +++ b/drivers/led/issi/is31fl3736.c | |||
| @@ -139,7 +139,7 @@ void is31fl3736_init(uint8_t addr) { | |||
| 139 | // Set up the mode and other settings, clear the PWM registers, | 139 | // Set up the mode and other settings, clear the PWM registers, |
| 140 | // then disable software shutdown. | 140 | // then disable software shutdown. |
| 141 | 141 | ||
| 142 | is31fl3736_select_page(addr, IS31FL3736_REG_LED_CONTROL); | 142 | is31fl3736_select_page(addr, IS31FL3736_COMMAND_LED_CONTROL); |
| 143 | 143 | ||
| 144 | // Turn off all LEDs. | 144 | // Turn off all LEDs. |
| 145 | for (int i = 0; i < IS31FL3736_LED_CONTROL_REGISTER_COUNT; i++) { | 145 | for (int i = 0; i < IS31FL3736_LED_CONTROL_REGISTER_COUNT; i++) { |
diff --git a/drivers/led/issi/is31fl3741-simple.c b/drivers/led/issi/is31fl3741-simple.c index db245af4da..3e9b3d8b25 100644 --- a/drivers/led/issi/is31fl3741-simple.c +++ b/drivers/led/issi/is31fl3741-simple.c | |||
| @@ -23,6 +23,7 @@ | |||
| 23 | #include "wait.h" | 23 | #include "wait.h" |
| 24 | 24 | ||
| 25 | #define IS31FL3741_PWM_REGISTER_COUNT 351 | 25 | #define IS31FL3741_PWM_REGISTER_COUNT 351 |
| 26 | #define IS31FL3741_SCALING_REGISTER_COUNT 351 | ||
| 26 | 27 | ||
| 27 | #ifndef IS31FL3741_I2C_TIMEOUT | 28 | #ifndef IS31FL3741_I2C_TIMEOUT |
| 28 | # define IS31FL3741_I2C_TIMEOUT 100 | 29 | # define IS31FL3741_I2C_TIMEOUT 100 |
| @@ -64,7 +65,7 @@ uint8_t g_pwm_buffer[IS31FL3741_DRIVER_COUNT][IS31FL3741_PWM_REGISTER_COUNT]; | |||
| 64 | bool g_pwm_buffer_update_required[IS31FL3741_DRIVER_COUNT] = {false}; | 65 | bool g_pwm_buffer_update_required[IS31FL3741_DRIVER_COUNT] = {false}; |
| 65 | bool g_scaling_registers_update_required[IS31FL3741_DRIVER_COUNT] = {false}; | 66 | bool g_scaling_registers_update_required[IS31FL3741_DRIVER_COUNT] = {false}; |
| 66 | 67 | ||
| 67 | uint8_t g_scaling_registers[IS31FL3741_DRIVER_COUNT][IS31FL3741_PWM_REGISTER_COUNT]; | 68 | uint8_t g_scaling_registers[IS31FL3741_DRIVER_COUNT][IS31FL3741_SCALING_REGISTER_COUNT]; |
| 68 | 69 | ||
| 69 | void is31fl3741_write_register(uint8_t addr, uint8_t reg, uint8_t data) { | 70 | void is31fl3741_write_register(uint8_t addr, uint8_t reg, uint8_t data) { |
| 70 | i2c_transfer_buffer[0] = reg; | 71 | i2c_transfer_buffer[0] = reg; |
diff --git a/drivers/led/issi/is31fl3741.c b/drivers/led/issi/is31fl3741.c index 0575f31254..08b86f9171 100644 --- a/drivers/led/issi/is31fl3741.c +++ b/drivers/led/issi/is31fl3741.c | |||
| @@ -23,6 +23,7 @@ | |||
| 23 | #include "wait.h" | 23 | #include "wait.h" |
| 24 | 24 | ||
| 25 | #define IS31FL3741_PWM_REGISTER_COUNT 351 | 25 | #define IS31FL3741_PWM_REGISTER_COUNT 351 |
| 26 | #define IS31FL3741_SCALING_REGISTER_COUNT 351 | ||
| 26 | 27 | ||
| 27 | #ifndef IS31FL3741_I2C_TIMEOUT | 28 | #ifndef IS31FL3741_I2C_TIMEOUT |
| 28 | # define IS31FL3741_I2C_TIMEOUT 100 | 29 | # define IS31FL3741_I2C_TIMEOUT 100 |
| @@ -64,7 +65,7 @@ uint8_t g_pwm_buffer[IS31FL3741_DRIVER_COUNT][IS31FL3741_PWM_REGISTER_COUNT]; | |||
| 64 | bool g_pwm_buffer_update_required[IS31FL3741_DRIVER_COUNT] = {false}; | 65 | bool g_pwm_buffer_update_required[IS31FL3741_DRIVER_COUNT] = {false}; |
| 65 | bool g_scaling_registers_update_required[IS31FL3741_DRIVER_COUNT] = {false}; | 66 | bool g_scaling_registers_update_required[IS31FL3741_DRIVER_COUNT] = {false}; |
| 66 | 67 | ||
| 67 | uint8_t g_scaling_registers[IS31FL3741_DRIVER_COUNT][IS31FL3741_PWM_REGISTER_COUNT]; | 68 | uint8_t g_scaling_registers[IS31FL3741_DRIVER_COUNT][IS31FL3741_SCALING_REGISTER_COUNT]; |
| 68 | 69 | ||
| 69 | void is31fl3741_write_register(uint8_t addr, uint8_t reg, uint8_t data) { | 70 | void is31fl3741_write_register(uint8_t addr, uint8_t reg, uint8_t data) { |
| 70 | i2c_transfer_buffer[0] = reg; | 71 | i2c_transfer_buffer[0] = reg; |
diff --git a/keyboards/4pplet/perk60_iso/rev_a/rev_a.c b/keyboards/4pplet/perk60_iso/rev_a/rev_a.c index e3b8d71a90..55af271f3b 100644 --- a/keyboards/4pplet/perk60_iso/rev_a/rev_a.c +++ b/keyboards/4pplet/perk60_iso/rev_a/rev_a.c | |||
| @@ -17,7 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 17 | #include "rev_a.h" | 17 | #include "rev_a.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 21 | { 0, K_2, J_2, L_2 }, //D402 | 21 | { 0, K_2, J_2, L_2 }, //D402 |
| 22 | { 0, K_3, J_3, L_3 }, //D403 | 22 | { 0, K_3, J_3, L_3 }, //D403 |
| 23 | { 0, K_4, J_4, L_4 }, //D404 | 23 | { 0, K_4, J_4, L_4 }, //D404 |
diff --git a/keyboards/abko/ak84bt/ak84bt.c b/keyboards/abko/ak84bt/ak84bt.c index a51f1f458f..86f28a1bb2 100644 --- a/keyboards/abko/ak84bt/ak84bt.c +++ b/keyboards/abko/ak84bt/ak84bt.c | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | 16 | ||
| 17 | #include QMK_KEYBOARD_H | 17 | #include QMK_KEYBOARD_H |
| 18 | 18 | ||
| 19 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 19 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 20 | {0, G_1, I_1, H_1}, | 20 | {0, G_1, I_1, H_1}, |
| 21 | {0, G_3, I_3, H_3}, | 21 | {0, G_3, I_3, H_3}, |
| 22 | {0, G_4, I_4, H_4}, | 22 | {0, G_4, I_4, H_4}, |
diff --git a/keyboards/acheron/apollo/87h/gamma/gamma.c b/keyboards/acheron/apollo/87h/gamma/gamma.c index 19e9106287..43802bb4ad 100644 --- a/keyboards/acheron/apollo/87h/gamma/gamma.c +++ b/keyboards/acheron/apollo/87h/gamma/gamma.c | |||
| @@ -18,7 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 18 | #include "quantum.h" | 18 | #include "quantum.h" |
| 19 | 19 | ||
| 20 | #ifdef RGB_MATRIX_ENABLE | 20 | #ifdef RGB_MATRIX_ENABLE |
| 21 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 22 | /* Refer to IS31 manual for these locations | 22 | /* Refer to IS31 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/akko/5087/5087.c b/keyboards/akko/5087/5087.c index 4d6cf94900..6374adc301 100644 --- a/keyboards/akko/5087/5087.c +++ b/keyboards/akko/5087/5087.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | // clang-format off | 18 | // clang-format off |
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const ckled2001_led PROGMEM g_ckled2001_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 21 | /* Refer to IS31 manual for these locations | 21 | /* Refer to IS31 manual for these locations |
| 22 | * driver | 22 | * driver |
| 23 | * | R location | 23 | * | R location |
diff --git a/keyboards/akko/5108/5108.c b/keyboards/akko/5108/5108.c index 91f53e1e55..0fd71834d1 100644 --- a/keyboards/akko/5108/5108.c +++ b/keyboards/akko/5108/5108.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | // clang-format off | 18 | // clang-format off |
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 21 | /* Refer to SNLED27351 manual for these locations | 21 | /* Refer to SNLED27351 manual for these locations |
| 22 | * driver | 22 | * driver |
| 23 | * | R location | 23 | * | R location |
diff --git a/keyboards/akko/acr87/acr87.c b/keyboards/akko/acr87/acr87.c index 7ee9ec6470..3e7f603474 100644 --- a/keyboards/akko/acr87/acr87.c +++ b/keyboards/akko/acr87/acr87.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | // clang-format off | 18 | // clang-format off |
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 21 | /* Refer to SNLED27351 manual for these locations | 21 | /* Refer to SNLED27351 manual for these locations |
| 22 | * driver | 22 | * driver |
| 23 | * | R location | 23 | * | R location |
diff --git a/keyboards/akko/top40/top40.c b/keyboards/akko/top40/top40.c index 028e4bdd05..2d75b77497 100644 --- a/keyboards/akko/top40/top40.c +++ b/keyboards/akko/top40/top40.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | // clang-format off | 18 | // clang-format off |
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 21 | /* Refer to SNLED27351 manual for these locations | 21 | /* Refer to SNLED27351 manual for these locations |
| 22 | * driver | 22 | * driver |
| 23 | * | R location | 23 | * | R location |
diff --git a/keyboards/axolstudio/yeti/hotswap/hotswap.c b/keyboards/axolstudio/yeti/hotswap/hotswap.c index 527bec17ee..dd65a16a80 100644 --- a/keyboards/axolstudio/yeti/hotswap/hotswap.c +++ b/keyboards/axolstudio/yeti/hotswap/hotswap.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const is31fl3733_led_t g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 21 | { 0, B_1, A_1, C_1 }, | 21 | { 0, B_1, A_1, C_1 }, |
| 22 | { 0, B_2, A_2, C_2 }, | 22 | { 0, B_2, A_2, C_2 }, |
| 23 | { 0, B_3, A_3, C_3 }, | 23 | { 0, B_3, A_3, C_3 }, |
diff --git a/keyboards/canary/canary60rgb/canary60rgb.c b/keyboards/canary/canary60rgb/canary60rgb.c index 065268c531..55569f5049 100644 --- a/keyboards/canary/canary60rgb/canary60rgb.c +++ b/keyboards/canary/canary60rgb/canary60rgb.c | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | #include "quantum.h" | 16 | #include "quantum.h" |
| 17 | 17 | ||
| 18 | #ifdef RGB_MATRIX_ENABLE | 18 | #ifdef RGB_MATRIX_ENABLE |
| 19 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 19 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 20 | { 0, J_14, K_14, L_14 }, | 20 | { 0, J_14, K_14, L_14 }, |
| 21 | { 0, J_13, K_13, L_13 }, | 21 | { 0, J_13, K_13, L_13 }, |
| 22 | { 0, J_12, K_12, L_12 }, | 22 | { 0, J_12, K_12, L_12 }, |
diff --git a/keyboards/chosfox/cf81/cf81.c b/keyboards/chosfox/cf81/cf81.c index ad7ec9bc55..b864a56bc6 100644 --- a/keyboards/chosfox/cf81/cf81.c +++ b/keyboards/chosfox/cf81/cf81.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | // clang-format off | 19 | // clang-format off |
| 20 | #ifdef RGB_MATRIX_ENABLE | 20 | #ifdef RGB_MATRIX_ENABLE |
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/clueboard/66_hotswap/gen1/gen1.c b/keyboards/clueboard/66_hotswap/gen1/gen1.c index 7af0b964da..e13a05de05 100644 --- a/keyboards/clueboard/66_hotswap/gen1/gen1.c +++ b/keyboards/clueboard/66_hotswap/gen1/gen1.c | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | #include "quantum.h" | 16 | #include "quantum.h" |
| 17 | 17 | ||
| 18 | #ifdef LED_MATRIX_ENABLE | 18 | #ifdef LED_MATRIX_ENABLE |
| 19 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[LED_MATRIX_LED_COUNT] = { | 19 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 20 | /* Refer to IS31 manual for these locations | 20 | /* Refer to IS31 manual for these locations |
| 21 | * driver | 21 | * driver |
| 22 | * | LED address | 22 | * | LED address |
diff --git a/keyboards/darkproject/kd83a_bfg_edition/kd83a_bfg_edition.c b/keyboards/darkproject/kd83a_bfg_edition/kd83a_bfg_edition.c index e78de78bf8..550520e790 100644 --- a/keyboards/darkproject/kd83a_bfg_edition/kd83a_bfg_edition.c +++ b/keyboards/darkproject/kd83a_bfg_edition/kd83a_bfg_edition.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const aw_led g_aw_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const aw20216s_led_t PROGMEM g_aw20216s_leds[AW20216S_LED_COUNT] = { |
| 22 | /* Refer to IS31 manual for these locations | 22 | /* Refer to IS31 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/darkproject/kd87a_bfg_edition/kd87a_bfg_edition.c b/keyboards/darkproject/kd87a_bfg_edition/kd87a_bfg_edition.c index 0ce0799e14..22d10488d2 100644 --- a/keyboards/darkproject/kd87a_bfg_edition/kd87a_bfg_edition.c +++ b/keyboards/darkproject/kd87a_bfg_edition/kd87a_bfg_edition.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const aw_led g_aw_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const aw20216s_led_t PROGMEM g_aw20216s_leds[AW20216S_LED_COUNT] = { |
| 22 | /* Refer to IS31 manual for these locations | 22 | /* Refer to IS31 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/dp60/dp60.c b/keyboards/dp60/dp60.c index 588acd591d..5f23b35542 100644 --- a/keyboards/dp60/dp60.c +++ b/keyboards/dp60/dp60.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 21 | /* Refer to IS31 manual for these locations | 21 | /* Refer to IS31 manual for these locations |
| 22 | * driver | 22 | * driver |
| 23 | * | R location | 23 | * | R location |
diff --git a/keyboards/drop/alt/v2/v2.c b/keyboards/drop/alt/v2/v2.c index fcdad7f2df..d3bb78fd12 100644 --- a/keyboards/drop/alt/v2/v2.c +++ b/keyboards/drop/alt/v2/v2.c | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | #ifdef RGB_MATRIX_ENABLE | 3 | #ifdef RGB_MATRIX_ENABLE |
| 4 | # include "rgb_matrix.h" | 4 | # include "rgb_matrix.h" |
| 5 | 5 | ||
| 6 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 6 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 7 | { 1, B_2, A_2, C_2 }, | 7 | { 1, B_2, A_2, C_2 }, |
| 8 | { 1, E_3, D_3, F_3 }, | 8 | { 1, E_3, D_3, F_3 }, |
| 9 | { 1, E_4, D_4, F_4 }, | 9 | { 1, E_4, D_4, F_4 }, |
diff --git a/keyboards/drop/cstm65/cstm65.c b/keyboards/drop/cstm65/cstm65.c index ccb86f1d3e..1c8e6bb0bb 100644 --- a/keyboards/drop/cstm65/cstm65.c +++ b/keyboards/drop/cstm65/cstm65.c | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | #ifdef RGB_MATRIX_ENABLE | 3 | #ifdef RGB_MATRIX_ENABLE |
| 4 | # include "rgb_matrix.h" | 4 | # include "rgb_matrix.h" |
| 5 | 5 | ||
| 6 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 6 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 7 | { 0, B_1, A_1, C_1 }, | 7 | { 0, B_1, A_1, C_1 }, |
| 8 | { 0, B_2, A_2, C_2 }, | 8 | { 0, B_2, A_2, C_2 }, |
| 9 | { 0, B_3, A_3, C_3 }, | 9 | { 0, B_3, A_3, C_3 }, |
diff --git a/keyboards/drop/cstm80/cstm80.c b/keyboards/drop/cstm80/cstm80.c index 75e7049c20..e99c7801e5 100644 --- a/keyboards/drop/cstm80/cstm80.c +++ b/keyboards/drop/cstm80/cstm80.c | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | #ifdef RGB_MATRIX_ENABLE | 3 | #ifdef RGB_MATRIX_ENABLE |
| 4 | # include "rgb_matrix.h" | 4 | # include "rgb_matrix.h" |
| 5 | 5 | ||
| 6 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 6 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 7 | { 0, E_1, D_1, F_1 }, | 7 | { 0, E_1, D_1, F_1 }, |
| 8 | { 0, E_2, D_2, F_2 }, | 8 | { 0, E_2, D_2, F_2 }, |
| 9 | { 0, E_3, D_3, F_3 }, | 9 | { 0, E_3, D_3, F_3 }, |
diff --git a/keyboards/drop/ctrl/v2/v2.c b/keyboards/drop/ctrl/v2/v2.c index 6b565efbe1..0c1d8210c6 100644 --- a/keyboards/drop/ctrl/v2/v2.c +++ b/keyboards/drop/ctrl/v2/v2.c | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | #ifdef RGB_MATRIX_ENABLE | 3 | #ifdef RGB_MATRIX_ENABLE |
| 4 | # include "rgb_matrix.h" | 4 | # include "rgb_matrix.h" |
| 5 | 5 | ||
| 6 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 6 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 7 | { 1, B_2, A_2, C_2 }, | 7 | { 1, B_2, A_2, C_2 }, |
| 8 | { 1, E_3, D_3, F_3 }, | 8 | { 1, E_3, D_3, F_3 }, |
| 9 | { 1, E_4, D_4, F_4 }, | 9 | { 1, E_4, D_4, F_4 }, |
diff --git a/keyboards/drop/sense75/sense75.c b/keyboards/drop/sense75/sense75.c index 057e310748..bbe5a3aa47 100644 --- a/keyboards/drop/sense75/sense75.c +++ b/keyboards/drop/sense75/sense75.c | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | #ifdef RGB_MATRIX_ENABLE | 3 | #ifdef RGB_MATRIX_ENABLE |
| 4 | # include "rgb_matrix.h" | 4 | # include "rgb_matrix.h" |
| 5 | 5 | ||
| 6 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 6 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 7 | // top underglow sd2-sd17 | 7 | // top underglow sd2-sd17 |
| 8 | { 0, B_2, A_2, C_2 }, | 8 | { 0, B_2, A_2, C_2 }, |
| 9 | { 0, B_3, A_3, C_3 }, | 9 | { 0, B_3, A_3, C_3 }, |
diff --git a/keyboards/drop/shift/v2/v2.c b/keyboards/drop/shift/v2/v2.c index 8565a0cb26..cbfbeda429 100644 --- a/keyboards/drop/shift/v2/v2.c +++ b/keyboards/drop/shift/v2/v2.c | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | # include "host.h" | 4 | # include "host.h" |
| 5 | # include "rgb_matrix.h" | 5 | # include "rgb_matrix.h" |
| 6 | 6 | ||
| 7 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 7 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 8 | { 0, K_1, J_1, L_1 },// LED1 | 8 | { 0, K_1, J_1, L_1 },// LED1 |
| 9 | { 0, K_2, J_2, L_2 }, | 9 | { 0, K_2, J_2, L_2 }, |
| 10 | { 0, K_3, J_3, L_3 }, | 10 | { 0, K_3, J_3, L_3 }, |
diff --git a/keyboards/durgod/dgk6x/galaxy/galaxy.c b/keyboards/durgod/dgk6x/galaxy/galaxy.c index aa903c3a0a..cd1f10c4f9 100644 --- a/keyboards/durgod/dgk6x/galaxy/galaxy.c +++ b/keyboards/durgod/dgk6x/galaxy/galaxy.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 22 | /* Refer to IS31 manual for these locations | 22 | /* Refer to IS31 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/durgod/dgk6x/hades_ansi/hades_ansi.c b/keyboards/durgod/dgk6x/hades_ansi/hades_ansi.c index 2d1907f4db..225a7c13dd 100644 --- a/keyboards/durgod/dgk6x/hades_ansi/hades_ansi.c +++ b/keyboards/durgod/dgk6x/hades_ansi/hades_ansi.c | |||
| @@ -19,7 +19,7 @@ | |||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | 21 | ||
| 22 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 22 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 23 | /* Refer to IS31 manual for these locations | 23 | /* Refer to IS31 manual for these locations |
| 24 | * driver | 24 | * driver |
| 25 | * | R location | 25 | * | R location |
diff --git a/keyboards/durgod/dgk6x/hades_iso/hades_iso.c b/keyboards/durgod/dgk6x/hades_iso/hades_iso.c index 42f43645f5..6dd732c454 100644 --- a/keyboards/durgod/dgk6x/hades_iso/hades_iso.c +++ b/keyboards/durgod/dgk6x/hades_iso/hades_iso.c | |||
| @@ -19,7 +19,7 @@ | |||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | 21 | ||
| 22 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 22 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 23 | /* Refer to IS31 manual for these locations | 23 | /* Refer to IS31 manual for these locations |
| 24 | * driver | 24 | * driver |
| 25 | * | R location | 25 | * | R location |
diff --git a/keyboards/durgod/dgk6x/venus/venus.c b/keyboards/durgod/dgk6x/venus/venus.c index d48e95fb21..9de5f2e63d 100644 --- a/keyboards/durgod/dgk6x/venus/venus.c +++ b/keyboards/durgod/dgk6x/venus/venus.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 22 | /* Refer to IS31 manual for these locations | 22 | /* Refer to IS31 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/dztech/dz60rgb/dz60rgb.c b/keyboards/dztech/dz60rgb/dz60rgb.c index 826e3502eb..593b2d96ff 100644 --- a/keyboards/dztech/dz60rgb/dz60rgb.c +++ b/keyboards/dztech/dz60rgb/dz60rgb.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | #include "quantum.h" | 1 | #include "quantum.h" |
| 2 | 2 | ||
| 3 | #ifdef RGB_MATRIX_ENABLE | 3 | #ifdef RGB_MATRIX_ENABLE |
| 4 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 4 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 5 | { 0, K_14, J_14, L_14 }, | 5 | { 0, K_14, J_14, L_14 }, |
| 6 | { 0, K_13, J_13, L_13 }, | 6 | { 0, K_13, J_13, L_13 }, |
| 7 | { 0, K_12, J_12, L_12 }, | 7 | { 0, K_12, J_12, L_12 }, |
diff --git a/keyboards/dztech/dz60rgb_ansi/dz60rgb_ansi.c b/keyboards/dztech/dz60rgb_ansi/dz60rgb_ansi.c index 5c06922028..a4cfd2551e 100644 --- a/keyboards/dztech/dz60rgb_ansi/dz60rgb_ansi.c +++ b/keyboards/dztech/dz60rgb_ansi/dz60rgb_ansi.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | #include "quantum.h" | 1 | #include "quantum.h" |
| 2 | 2 | ||
| 3 | #ifdef RGB_MATRIX_ENABLE | 3 | #ifdef RGB_MATRIX_ENABLE |
| 4 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 4 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 5 | { 0, K_14, J_14, L_14 }, | 5 | { 0, K_14, J_14, L_14 }, |
| 6 | { 0, K_13, J_13, L_13 }, | 6 | { 0, K_13, J_13, L_13 }, |
| 7 | { 0, K_12, J_12, L_12 }, | 7 | { 0, K_12, J_12, L_12 }, |
diff --git a/keyboards/dztech/dz60rgb_wkl/dz60rgb_wkl.c b/keyboards/dztech/dz60rgb_wkl/dz60rgb_wkl.c index d6506389a6..4326b6f9af 100644 --- a/keyboards/dztech/dz60rgb_wkl/dz60rgb_wkl.c +++ b/keyboards/dztech/dz60rgb_wkl/dz60rgb_wkl.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | #include "quantum.h" | 1 | #include "quantum.h" |
| 2 | 2 | ||
| 3 | #ifdef RGB_MATRIX_ENABLE | 3 | #ifdef RGB_MATRIX_ENABLE |
| 4 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 4 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 5 | { 0, H_15, G_15, I_15 }, | 5 | { 0, H_15, G_15, I_15 }, |
| 6 | { 0, K_14, J_14, L_14 }, | 6 | { 0, K_14, J_14, L_14 }, |
| 7 | { 0, K_13, J_13, L_13 }, | 7 | { 0, K_13, J_13, L_13 }, |
diff --git a/keyboards/dztech/dz64rgb/dz64rgb.c b/keyboards/dztech/dz64rgb/dz64rgb.c index 561a9727e5..09a535ab47 100644 --- a/keyboards/dztech/dz64rgb/dz64rgb.c +++ b/keyboards/dztech/dz64rgb/dz64rgb.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 21 | { 0, K_14, J_14, L_14 }, | 21 | { 0, K_14, J_14, L_14 }, |
| 22 | { 0, K_13, J_13, L_13 }, | 22 | { 0, K_13, J_13, L_13 }, |
| 23 | { 0, K_12, J_12, L_12 }, | 23 | { 0, K_12, J_12, L_12 }, |
diff --git a/keyboards/dztech/dz65rgb/v1/v1.c b/keyboards/dztech/dz65rgb/v1/v1.c index a0a355e120..6e8cf96e4c 100644 --- a/keyboards/dztech/dz65rgb/v1/v1.c +++ b/keyboards/dztech/dz65rgb/v1/v1.c | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | #include "quantum.h" | 16 | #include "quantum.h" |
| 17 | 17 | ||
| 18 | #ifdef RGB_MATRIX_ENABLE | 18 | #ifdef RGB_MATRIX_ENABLE |
| 19 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 19 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 20 | { 0, C8_8, C7_8, C6_8 }, | 20 | { 0, C8_8, C7_8, C6_8 }, |
| 21 | { 0, C9_8, C7_7, C6_7 }, | 21 | { 0, C9_8, C7_7, C6_7 }, |
| 22 | { 0, C9_7, C8_7, C6_6 }, | 22 | { 0, C9_7, C8_7, C6_6 }, |
diff --git a/keyboards/dztech/dz65rgb/v2/v2.c b/keyboards/dztech/dz65rgb/v2/v2.c index 7754bc4ee5..a9f7fc104f 100644 --- a/keyboards/dztech/dz65rgb/v2/v2.c +++ b/keyboards/dztech/dz65rgb/v2/v2.c | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | #include "quantum.h" | 16 | #include "quantum.h" |
| 17 | 17 | ||
| 18 | #ifdef RGB_MATRIX_ENABLE | 18 | #ifdef RGB_MATRIX_ENABLE |
| 19 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 19 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 20 | { 0, C8_8, C7_8, C6_8 }, | 20 | { 0, C8_8, C7_8, C6_8 }, |
| 21 | { 0, C9_8, C7_7, C6_7 }, | 21 | { 0, C9_8, C7_7, C6_7 }, |
| 22 | { 0, C9_7, C8_7, C6_6 }, | 22 | { 0, C9_7, C8_7, C6_6 }, |
diff --git a/keyboards/dztech/dz65rgb/v3/v3.c b/keyboards/dztech/dz65rgb/v3/v3.c index 0fb8ba49de..2055e6e3c2 100755 --- a/keyboards/dztech/dz65rgb/v3/v3.c +++ b/keyboards/dztech/dz65rgb/v3/v3.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 22 | {0, CS21_SW1, CS20_SW1, CS19_SW1}, | 22 | {0, CS21_SW1, CS20_SW1, CS19_SW1}, |
| 23 | {0, CS21_SW2, CS20_SW2, CS19_SW2}, | 23 | {0, CS21_SW2, CS20_SW2, CS19_SW2}, |
| 24 | {0, CS21_SW3, CS20_SW3, CS19_SW3}, | 24 | {0, CS21_SW3, CS20_SW3, CS19_SW3}, |
diff --git a/keyboards/dztech/tofu/ii/v1/v1.c b/keyboards/dztech/tofu/ii/v1/v1.c index 8baf0235bd..dd18f86bf8 100644 --- a/keyboards/dztech/tofu/ii/v1/v1.c +++ b/keyboards/dztech/tofu/ii/v1/v1.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | 17 | ||
| 18 | #ifdef RGB_MATRIX_ENABLE | 18 | #ifdef RGB_MATRIX_ENABLE |
| 19 | 19 | ||
| 20 | const is31fl3737_led_t PROGMEM g_is31fl3737_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3737_led_t PROGMEM g_is31fl3737_leds[IS31FL3737_LED_COUNT] = { |
| 21 | { 1, K_12, J_12, L_12 }, | 21 | { 1, K_12, J_12, L_12 }, |
| 22 | { 1, K_11, J_11, L_11 }, | 22 | { 1, K_11, J_11, L_11 }, |
| 23 | { 1, K_10, J_10, L_10 }, | 23 | { 1, K_10, J_10, L_10 }, |
diff --git a/keyboards/dztech/tofu/jr/v1/v1.c b/keyboards/dztech/tofu/jr/v1/v1.c index 474134cb5e..46b16317ac 100644 --- a/keyboards/dztech/tofu/jr/v1/v1.c +++ b/keyboards/dztech/tofu/jr/v1/v1.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const is31fl3737_led_t PROGMEM g_is31fl3737_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const is31fl3737_led_t PROGMEM g_is31fl3737_leds[IS31FL3737_LED_COUNT] = { |
| 22 | { 1, K_12, J_12, L_12 }, | 22 | { 1, K_12, J_12, L_12 }, |
| 23 | { 1, K_11, J_11, L_11 }, | 23 | { 1, K_11, J_11, L_11 }, |
| 24 | { 1, K_10, J_10, L_10 }, | 24 | { 1, K_10, J_10, L_10 }, |
diff --git a/keyboards/ergodox_ez/ergodox_ez.c b/keyboards/ergodox_ez/ergodox_ez.c index 455d294ef5..f088036c4a 100644 --- a/keyboards/ergodox_ez/ergodox_ez.c +++ b/keyboards/ergodox_ez/ergodox_ez.c | |||
| @@ -243,7 +243,7 @@ const keypos_t PROGMEM hand_swap_config[MATRIX_ROWS][MATRIX_COLS] = { | |||
| 243 | 243 | ||
| 244 | #ifdef RGB_MATRIX_ENABLE | 244 | #ifdef RGB_MATRIX_ENABLE |
| 245 | // clang-format off | 245 | // clang-format off |
| 246 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 246 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 247 | /* driver | 247 | /* driver |
| 248 | * | R location | 248 | * | R location |
| 249 | * | | G location | 249 | * | | G location |
diff --git a/keyboards/evyd13/atom47/rev5/rev5.c b/keyboards/evyd13/atom47/rev5/rev5.c index 7bf2a961ff..6dad846614 100644 --- a/keyboards/evyd13/atom47/rev5/rev5.c +++ b/keyboards/evyd13/atom47/rev5/rev5.c | |||
| @@ -17,7 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 17 | 17 | ||
| 18 | #include "quantum.h" | 18 | #include "quantum.h" |
| 19 | 19 | ||
| 20 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 21 | /* Refer to IS31 manual for these locations | 21 | /* Refer to IS31 manual for these locations |
| 22 | * driver | 22 | * driver |
| 23 | * | R location | 23 | * | R location |
diff --git a/keyboards/exclusive/e6_rgb/e6_rgb.c b/keyboards/exclusive/e6_rgb/e6_rgb.c index f34f40cc1f..24676e8910 100644 --- a/keyboards/exclusive/e6_rgb/e6_rgb.c +++ b/keyboards/exclusive/e6_rgb/e6_rgb.c | |||
| @@ -7,7 +7,7 @@ void matrix_init_kb(void) { | |||
| 7 | matrix_init_user(); | 7 | matrix_init_user(); |
| 8 | } | 8 | } |
| 9 | 9 | ||
| 10 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 10 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 11 | /* Refer to IS31 manual for these locations | 11 | /* Refer to IS31 manual for these locations |
| 12 | * driver | 12 | * driver |
| 13 | * | R location | 13 | * | R location |
diff --git a/keyboards/feker/ik75/ik75.c b/keyboards/feker/ik75/ik75.c index 826afab01b..e6424491bd 100644 --- a/keyboards/feker/ik75/ik75.c +++ b/keyboards/feker/ik75/ik75.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | #include "quantum.h" | 18 | #include "quantum.h" |
| 19 | 19 | ||
| 20 | #ifdef RGB_MATRIX_ENABLE | 20 | #ifdef RGB_MATRIX_ENABLE |
| 21 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 22 | /* Refer to IS31 manual for these locations | 22 | /* Refer to IS31 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | G location | 24 | * | G location |
diff --git a/keyboards/ferris/0_2/bling/bling.c b/keyboards/ferris/0_2/bling/bling.c index 07f58149cc..69fbe411eb 100644 --- a/keyboards/ferris/0_2/bling/bling.c +++ b/keyboards/ferris/0_2/bling/bling.c | |||
| @@ -27,7 +27,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 27 | | | 4 | | || | | 4 | | | 27 | | | 4 | | || | | 4 | | |
| 28 | | 6 | | | 2 || 2 | | | 5 | | 28 | | 6 | | | 2 || 2 | | | 5 | |
| 29 | */ | 29 | */ |
| 30 | const is31fl3731_led_t g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 30 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 31 | /* Refer to IS31 manual for these locations | 31 | /* Refer to IS31 manual for these locations |
| 32 | * driver | 32 | * driver |
| 33 | * | R location | 33 | * | R location |
diff --git a/keyboards/flashquark/horizon_z/horizon_z.c b/keyboards/flashquark/horizon_z/horizon_z.c index a9faa5a943..5ab6e22434 100755 --- a/keyboards/flashquark/horizon_z/horizon_z.c +++ b/keyboards/flashquark/horizon_z/horizon_z.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 21 | {0, B_1, A_1, C_1}, | 21 | {0, B_1, A_1, C_1}, |
| 22 | {0, B_2, A_2, C_2}, | 22 | {0, B_2, A_2, C_2}, |
| 23 | {0, B_3, A_3, C_3}, | 23 | {0, B_3, A_3, C_3}, |
diff --git a/keyboards/frooastboard/walnut/walnut.c b/keyboards/frooastboard/walnut/walnut.c index 48d1677f7a..e3205e07f3 100644 --- a/keyboards/frooastboard/walnut/walnut.c +++ b/keyboards/frooastboard/walnut/walnut.c | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | 5 | ||
| 6 | #if defined(RGB_MATRIX_ENABLE) | 6 | #if defined(RGB_MATRIX_ENABLE) |
| 7 | 7 | ||
| 8 | const is31fl3737_led_t PROGMEM g_is31fl3737_leds[RGB_MATRIX_LED_COUNT] = { | 8 | const is31fl3737_led_t PROGMEM g_is31fl3737_leds[IS31FL3737_LED_COUNT] = { |
| 9 | /* Refer to IS31 manual for these locations | 9 | /* Refer to IS31 manual for these locations |
| 10 | * driver | 10 | * driver |
| 11 | * | R location | 11 | * | R location |
diff --git a/keyboards/geekboards/tester/tester.c b/keyboards/geekboards/tester/tester.c index 187d887d58..11d2eb4db2 100644 --- a/keyboards/geekboards/tester/tester.c +++ b/keyboards/geekboards/tester/tester.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | #include "quantum.h" | 1 | #include "quantum.h" |
| 2 | 2 | ||
| 3 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 3 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 4 | /* Refer to IS31 manual for these locations | 4 | /* Refer to IS31 manual for these locations |
| 5 | * driver | 5 | * driver |
| 6 | * | R location | 6 | * | R location |
diff --git a/keyboards/gizmo_engineering/gk6/gk6.c b/keyboards/gizmo_engineering/gk6/gk6.c index 18883727b8..fe85ecc235 100755 --- a/keyboards/gizmo_engineering/gk6/gk6.c +++ b/keyboards/gizmo_engineering/gk6/gk6.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 21 | {0, C1_8, C2_8, C3_8}, //0 led1 | 21 | {0, C1_8, C2_8, C3_8}, //0 led1 |
| 22 | {0, C1_7, C2_7, C3_7}, //1 led2 | 22 | {0, C1_7, C2_7, C3_7}, //1 led2 |
| 23 | {0, C1_6, C2_6, C3_6}, //2 led3 | 23 | {0, C1_6, C2_6, C3_6}, //2 led3 |
diff --git a/keyboards/gmmk/gmmk2/p65/ansi/ansi.c b/keyboards/gmmk/gmmk2/p65/ansi/ansi.c index 774006d529..7c43f8d5ec 100644 --- a/keyboards/gmmk/gmmk2/p65/ansi/ansi.c +++ b/keyboards/gmmk/gmmk2/p65/ansi/ansi.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const aw20216s_led_t g_aw20216s_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const aw20216s_led_t PROGMEM g_aw20216s_leds[AW20216S_LED_COUNT] = { |
| 22 | /* Refer to AW20216S manual for these locations | 22 | /* Refer to AW20216S manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/gmmk/gmmk2/p65/iso/iso.c b/keyboards/gmmk/gmmk2/p65/iso/iso.c index 80c0dc2e0d..9a591cd4ef 100644 --- a/keyboards/gmmk/gmmk2/p65/iso/iso.c +++ b/keyboards/gmmk/gmmk2/p65/iso/iso.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const aw20216s_led_t g_aw20216s_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const aw20216s_led_t PROGMEM g_aw20216s_leds[AW20216S_LED_COUNT] = { |
| 22 | /* Refer to AW20216S manual for these locations | 22 | /* Refer to AW20216S manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/gmmk/gmmk2/p96/ansi/ansi.c b/keyboards/gmmk/gmmk2/p96/ansi/ansi.c index bc05ab6301..83dcad728a 100644 --- a/keyboards/gmmk/gmmk2/p96/ansi/ansi.c +++ b/keyboards/gmmk/gmmk2/p96/ansi/ansi.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const aw20216s_led_t g_aw20216s_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const aw20216s_led_t PROGMEM g_aw20216s_leds[AW20216S_LED_COUNT] = { |
| 22 | /* Refer to AW20216S manual for these locations | 22 | /* Refer to AW20216S manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/gmmk/gmmk2/p96/iso/iso.c b/keyboards/gmmk/gmmk2/p96/iso/iso.c index f6b3528cb4..d412215fc4 100644 --- a/keyboards/gmmk/gmmk2/p96/iso/iso.c +++ b/keyboards/gmmk/gmmk2/p96/iso/iso.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const aw20216s_led_t g_aw20216s_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const aw20216s_led_t PROGMEM g_aw20216s_leds[AW20216S_LED_COUNT] = { |
| 22 | /* Refer to AW20216S manual for these locations | 22 | /* Refer to AW20216S manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/gmmk/numpad/numpad.c b/keyboards/gmmk/numpad/numpad.c index 5cdb34c7bd..557137e8f1 100644 --- a/keyboards/gmmk/numpad/numpad.c +++ b/keyboards/gmmk/numpad/numpad.c | |||
| @@ -19,7 +19,7 @@ | |||
| 19 | 19 | ||
| 20 | #ifdef RGB_MATRIX_ENABLE | 20 | #ifdef RGB_MATRIX_ENABLE |
| 21 | 21 | ||
| 22 | const aw20216s_led_t g_aw20216s_leds[RGB_MATRIX_LED_COUNT] = { | 22 | const aw20216s_led_t PROGMEM g_aw20216s_leds[AW20216S_LED_COUNT] = { |
| 23 | /* Refer to AW20216S manual for these locations | 23 | /* Refer to AW20216S manual for these locations |
| 24 | * driver | 24 | * driver |
| 25 | * | R location | 25 | * | R location |
diff --git a/keyboards/gmmk/pro/rev1/ansi/ansi.c b/keyboards/gmmk/pro/rev1/ansi/ansi.c index a06594cb88..ff6382625a 100644 --- a/keyboards/gmmk/pro/rev1/ansi/ansi.c +++ b/keyboards/gmmk/pro/rev1/ansi/ansi.c | |||
| @@ -136,7 +136,7 @@ led_config_t g_led_config = {{ | |||
| 136 | 4, 2, 2, 4, 4, 2, 2, 4, 2, 2, 4, 4, 2, 2, 4, 4, 2, 2, 4, 4, 4, 4, 4 | 136 | 4, 2, 2, 4, 4, 2, 2, 4, 2, 2, 4, 4, 2, 2, 4, 4, 2, 2, 4, 4, 4, 4, 4 |
| 137 | }}; | 137 | }}; |
| 138 | 138 | ||
| 139 | const aw20216s_led_t g_aw20216s_leds[RGB_MATRIX_LED_COUNT] = { | 139 | const aw20216s_led_t PROGMEM g_aw20216s_leds[AW20216S_LED_COUNT] = { |
| 140 | {0, CS1_SW1, CS2_SW1, CS3_SW1}, // 0, ESC, k13 | 140 | {0, CS1_SW1, CS2_SW1, CS3_SW1}, // 0, ESC, k13 |
| 141 | {0, CS4_SW1, CS5_SW1, CS6_SW1}, // 1, ~, k16 | 141 | {0, CS4_SW1, CS5_SW1, CS6_SW1}, // 1, ~, k16 |
| 142 | {0, CS7_SW1, CS8_SW1, CS9_SW1}, // 2, Tab, k11 | 142 | {0, CS7_SW1, CS8_SW1, CS9_SW1}, // 2, Tab, k11 |
diff --git a/keyboards/gmmk/pro/rev1/iso/iso.c b/keyboards/gmmk/pro/rev1/iso/iso.c index 9744447587..68165dd27f 100644 --- a/keyboards/gmmk/pro/rev1/iso/iso.c +++ b/keyboards/gmmk/pro/rev1/iso/iso.c | |||
| @@ -137,7 +137,7 @@ led_config_t g_led_config = {{ | |||
| 137 | 2, 4, 2, 2, 4, 4, 2, 2, 4, 2, 2, 4, 4, 2, 2, 4, 4, 2, 2, 4, 4, 4, 4, 4 | 137 | 2, 4, 2, 2, 4, 4, 2, 2, 4, 2, 2, 4, 4, 2, 2, 4, 4, 2, 2, 4, 4, 4, 4, 4 |
| 138 | }}; | 138 | }}; |
| 139 | 139 | ||
| 140 | const aw20216s_led_t g_aw20216s_leds[RGB_MATRIX_LED_COUNT] = { | 140 | const aw20216s_led_t PROGMEM g_aw20216s_leds[AW20216S_LED_COUNT] = { |
| 141 | {0, CS1_SW1, CS2_SW1, CS3_SW1}, // 0, ESC, k13 | 141 | {0, CS1_SW1, CS2_SW1, CS3_SW1}, // 0, ESC, k13 |
| 142 | {0, CS4_SW1, CS5_SW1, CS6_SW1}, // 1, ~, k16 | 142 | {0, CS4_SW1, CS5_SW1, CS6_SW1}, // 1, ~, k16 |
| 143 | {0, CS7_SW1, CS8_SW1, CS9_SW1}, // 2, Tab, k11 | 143 | {0, CS7_SW1, CS8_SW1, CS9_SW1}, // 2, Tab, k11 |
diff --git a/keyboards/gmmk/pro/rev2/ansi/ansi.c b/keyboards/gmmk/pro/rev2/ansi/ansi.c index 322e94c938..c592e3cdae 100644 --- a/keyboards/gmmk/pro/rev2/ansi/ansi.c +++ b/keyboards/gmmk/pro/rev2/ansi/ansi.c | |||
| @@ -136,7 +136,7 @@ led_config_t g_led_config = {{ | |||
| 136 | 4, 2, 2, 4, 4, 2, 2, 4, 2, 2, 4, 4, 2, 2, 4, 4, 2, 2, 4, 4, 4, 4, 4 | 136 | 4, 2, 2, 4, 4, 2, 2, 4, 2, 2, 4, 4, 2, 2, 4, 4, 2, 2, 4, 4, 4, 4, 4 |
| 137 | }}; | 137 | }}; |
| 138 | 138 | ||
| 139 | const aw20216s_led_t g_aw20216s_leds[RGB_MATRIX_LED_COUNT] = { | 139 | const aw20216s_led_t PROGMEM g_aw20216s_leds[AW20216S_LED_COUNT] = { |
| 140 | {0, CS1_SW1, CS2_SW1, CS3_SW1}, // 0, ESC, k13 | 140 | {0, CS1_SW1, CS2_SW1, CS3_SW1}, // 0, ESC, k13 |
| 141 | {0, CS4_SW1, CS5_SW1, CS6_SW1}, // 1, ~, k16 | 141 | {0, CS4_SW1, CS5_SW1, CS6_SW1}, // 1, ~, k16 |
| 142 | {0, CS7_SW1, CS8_SW1, CS9_SW1}, // 2, Tab, k11 | 142 | {0, CS7_SW1, CS8_SW1, CS9_SW1}, // 2, Tab, k11 |
diff --git a/keyboards/gmmk/pro/rev2/iso/iso.c b/keyboards/gmmk/pro/rev2/iso/iso.c index 3a5b21c014..969ce8bf2e 100644 --- a/keyboards/gmmk/pro/rev2/iso/iso.c +++ b/keyboards/gmmk/pro/rev2/iso/iso.c | |||
| @@ -137,7 +137,7 @@ led_config_t g_led_config = {{ | |||
| 137 | 2, 4, 2, 2, 4, 4, 2, 2, 4, 2, 2, 4, 4, 2, 2, 4, 4, 2, 2, 4, 4, 4, 4, 4 | 137 | 2, 4, 2, 2, 4, 4, 2, 2, 4, 2, 2, 4, 4, 2, 2, 4, 4, 2, 2, 4, 4, 4, 4, 4 |
| 138 | }}; | 138 | }}; |
| 139 | 139 | ||
| 140 | const aw20216s_led_t g_aw20216s_leds[RGB_MATRIX_LED_COUNT] = { | 140 | const aw20216s_led_t PROGMEM g_aw20216s_leds[AW20216S_LED_COUNT] = { |
| 141 | {0, CS1_SW1, CS2_SW1, CS3_SW1}, // 0, ESC, k13 | 141 | {0, CS1_SW1, CS2_SW1, CS3_SW1}, // 0, ESC, k13 |
| 142 | {0, CS4_SW1, CS5_SW1, CS6_SW1}, // 1, ~, k16 | 142 | {0, CS4_SW1, CS5_SW1, CS6_SW1}, // 1, ~, k16 |
| 143 | {0, CS7_SW1, CS8_SW1, CS9_SW1}, // 2, Tab, k11 | 143 | {0, CS7_SW1, CS8_SW1, CS9_SW1}, // 2, Tab, k11 |
diff --git a/keyboards/handwired/orbweaver/orbweaver.c b/keyboards/handwired/orbweaver/orbweaver.c index 63778ea52b..a24db9aedd 100644 --- a/keyboards/handwired/orbweaver/orbweaver.c +++ b/keyboards/handwired/orbweaver/orbweaver.c | |||
| @@ -22,7 +22,7 @@ | |||
| 22 | 22 | ||
| 23 | #include "rgb_matrix.h" | 23 | #include "rgb_matrix.h" |
| 24 | 24 | ||
| 25 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 25 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 26 | /* Refer to IS31 manual for these locations | 26 | /* Refer to IS31 manual for these locations |
| 27 | * driver | 27 | * driver |
| 28 | * | R location | 28 | * | R location |
diff --git a/keyboards/hs60/v1/v1.c b/keyboards/hs60/v1/v1.c index 50f6215a02..f68bcbdf9e 100644 --- a/keyboards/hs60/v1/v1.c +++ b/keyboards/hs60/v1/v1.c | |||
| @@ -91,7 +91,7 @@ void raw_hid_receive( uint8_t *data, uint8_t length ) | |||
| 91 | 91 | ||
| 92 | #ifdef HS60_ANSI | 92 | #ifdef HS60_ANSI |
| 93 | 93 | ||
| 94 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 94 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 95 | /* Refer to IS31 manual for these locations | 95 | /* Refer to IS31 manual for these locations |
| 96 | * driver | 96 | * driver |
| 97 | * | R location | 97 | * | R location |
| @@ -199,7 +199,7 @@ led_config_t g_led_config = { { | |||
| 199 | 199 | ||
| 200 | #else | 200 | #else |
| 201 | 201 | ||
| 202 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 202 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 203 | /* Refer to IS31 manual for these locations | 203 | /* Refer to IS31 manual for these locations |
| 204 | * driver | 204 | * driver |
| 205 | * | R location | 205 | * | R location |
diff --git a/keyboards/ilumkb/simpler61/simpler61.c b/keyboards/ilumkb/simpler61/simpler61.c index f29f05defe..cb35e55428 100644 --- a/keyboards/ilumkb/simpler61/simpler61.c +++ b/keyboards/ilumkb/simpler61/simpler61.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 21 | {0, CS3_SW1, CS2_SW1, CS1_SW1}, | 21 | {0, CS3_SW1, CS2_SW1, CS1_SW1}, |
| 22 | {0, CS3_SW2, CS2_SW2, CS1_SW2}, | 22 | {0, CS3_SW2, CS2_SW2, CS1_SW2}, |
| 23 | {0, CS3_SW3, CS2_SW3, CS1_SW3}, | 23 | {0, CS3_SW3, CS2_SW3, CS1_SW3}, |
diff --git a/keyboards/ilumkb/simpler64/simpler64.c b/keyboards/ilumkb/simpler64/simpler64.c index a562fa5c8b..173423cf7e 100644 --- a/keyboards/ilumkb/simpler64/simpler64.c +++ b/keyboards/ilumkb/simpler64/simpler64.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 21 | {0, CS3_SW1, CS2_SW1, CS1_SW1}, | 21 | {0, CS3_SW1, CS2_SW1, CS1_SW1}, |
| 22 | {0, CS3_SW2, CS2_SW2, CS1_SW2}, | 22 | {0, CS3_SW2, CS2_SW2, CS1_SW2}, |
| 23 | {0, CS3_SW3, CS2_SW3, CS1_SW3}, | 23 | {0, CS3_SW3, CS2_SW3, CS1_SW3}, |
diff --git a/keyboards/inett_studio/sqx/hotswap/hotswap.c b/keyboards/inett_studio/sqx/hotswap/hotswap.c index 4d77a4829e..079889e727 100644 --- a/keyboards/inett_studio/sqx/hotswap/hotswap.c +++ b/keyboards/inett_studio/sqx/hotswap/hotswap.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | #include "hotswap.h" | 20 | #include "hotswap.h" |
| 21 | 21 | ||
| 22 | #ifdef RGB_MATRIX_ENABLE | 22 | #ifdef RGB_MATRIX_ENABLE |
| 23 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 24 | /* Refer to IS31 manual for these locations | 24 | /* Refer to IS31 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/inett_studio/sqx/universal/universal.c b/keyboards/inett_studio/sqx/universal/universal.c index 3ba42e9995..519df57505 100644 --- a/keyboards/inett_studio/sqx/universal/universal.c +++ b/keyboards/inett_studio/sqx/universal/universal.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | #include "universal.h" | 20 | #include "universal.h" |
| 21 | 21 | ||
| 22 | #ifdef RGB_MATRIX_ENABLE | 22 | #ifdef RGB_MATRIX_ENABLE |
| 23 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 24 | /* Refer to IS31 manual for these locations | 24 | /* Refer to IS31 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/inland/kb83/kb83.c b/keyboards/inland/kb83/kb83.c index 49604b93be..427a9a5e2d 100644 --- a/keyboards/inland/kb83/kb83.c +++ b/keyboards/inland/kb83/kb83.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | // clang-format off | 19 | // clang-format off |
| 20 | #ifdef RGB_MATRIX_ENABLE | 20 | #ifdef RGB_MATRIX_ENABLE |
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/inland/mk47/mk47.c b/keyboards/inland/mk47/mk47.c index 5a34527c6c..959330e6f8 100644 --- a/keyboards/inland/mk47/mk47.c +++ b/keyboards/inland/mk47/mk47.c | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | 16 | ||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | #ifdef RGB_MATRIX_ENABLE | 18 | #ifdef RGB_MATRIX_ENABLE |
| 19 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 19 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 20 | /* Refer to SNLED27351 manual for these locations | 20 | /* Refer to SNLED27351 manual for these locations |
| 21 | * driver | 21 | * driver |
| 22 | * | R location | 22 | * | R location |
diff --git a/keyboards/inland/v83p/v83p.c b/keyboards/inland/v83p/v83p.c index 3cb9c06cb0..d044003615 100644 --- a/keyboards/inland/v83p/v83p.c +++ b/keyboards/inland/v83p/v83p.c | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | // clang-format off | 5 | // clang-format off |
| 6 | 6 | ||
| 7 | #ifdef RGB_MATRIX_ENABLE | 7 | #ifdef RGB_MATRIX_ENABLE |
| 8 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 8 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 9 | /* Refer to IS31 manual for these locations | 9 | /* Refer to IS31 manual for these locations |
| 10 | * driver | 10 | * driver |
| 11 | * | R location | 11 | * | R location |
diff --git a/keyboards/input_club/ergodox_infinity/ergodox_infinity.c b/keyboards/input_club/ergodox_infinity/ergodox_infinity.c index 8f245d9fa3..80d3681437 100644 --- a/keyboards/input_club/ergodox_infinity/ergodox_infinity.c +++ b/keyboards/input_club/ergodox_infinity/ergodox_infinity.c | |||
| @@ -171,7 +171,7 @@ const keypos_t PROGMEM hand_swap_config[MATRIX_ROWS][MATRIX_COLS] = { | |||
| 171 | #endif | 171 | #endif |
| 172 | 172 | ||
| 173 | #ifdef LED_MATRIX_ENABLE | 173 | #ifdef LED_MATRIX_ENABLE |
| 174 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[LED_MATRIX_LED_COUNT] = { | 174 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 175 | // The numbers in the comments are the led numbers DXX on the PCB | 175 | // The numbers in the comments are the led numbers DXX on the PCB |
| 176 | /* Refer to IS31 manual for these locations | 176 | /* Refer to IS31 manual for these locations |
| 177 | * driver | 177 | * driver |
diff --git a/keyboards/input_club/infinity60/led/led.c b/keyboards/input_club/infinity60/led/led.c index a6a63e202d..e54f30d7b4 100644 --- a/keyboards/input_club/infinity60/led/led.c +++ b/keyboards/input_club/infinity60/led/led.c | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | #include "quantum.h" | 4 | #include "quantum.h" |
| 5 | 5 | ||
| 6 | #ifdef LED_MATRIX_ENABLE | 6 | #ifdef LED_MATRIX_ENABLE |
| 7 | const is31fl3731_led_t g_is31fl3731_leds[LED_MATRIX_LED_COUNT] = { | 7 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 8 | /* Refer to IS31 manual for these locations | 8 | /* Refer to IS31 manual for these locations |
| 9 | * driver | 9 | * driver |
| 10 | * | LED address | 10 | * | LED address |
diff --git a/keyboards/input_club/whitefox/whitefox.c b/keyboards/input_club/whitefox/whitefox.c index 63c6a49240..07741365c3 100644 --- a/keyboards/input_club/whitefox/whitefox.c +++ b/keyboards/input_club/whitefox/whitefox.c | |||
| @@ -18,7 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 18 | #include "quantum.h" | 18 | #include "quantum.h" |
| 19 | 19 | ||
| 20 | #ifdef LED_MATRIX_ENABLE | 20 | #ifdef LED_MATRIX_ENABLE |
| 21 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[LED_MATRIX_LED_COUNT] = { | 21 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 22 | // The numbers in the comments are the led numbers DXX on the PCB | 22 | // The numbers in the comments are the led numbers DXX on the PCB |
| 23 | /* Refer to IS31 manual for these locations | 23 | /* Refer to IS31 manual for these locations |
| 24 | * driver | 24 | * driver |
diff --git a/keyboards/jukaie/jk01/jk01.c b/keyboards/jukaie/jk01/jk01.c index 8f69419476..96db3b804e 100644 --- a/keyboards/jukaie/jk01/jk01.c +++ b/keyboards/jukaie/jk01/jk01.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const aw_led g_aw_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const aw20216s_led_t PROGMEM g_aw20216s_leds[AW20216S_LED_COUNT] = { |
| 22 | /* Refer to IS31 manual for these locations | 22 | /* Refer to IS31 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/kbdcraft/adam64/adam64.c b/keyboards/kbdcraft/adam64/adam64.c index b0712aec39..3f1565c2f3 100644 --- a/keyboards/kbdcraft/adam64/adam64.c +++ b/keyboards/kbdcraft/adam64/adam64.c | |||
| @@ -19,7 +19,7 @@ | |||
| 19 | #include "quantum.h" | 19 | #include "quantum.h" |
| 20 | 20 | ||
| 21 | #ifdef RGB_MATRIX_ENABLE | 21 | #ifdef RGB_MATRIX_ENABLE |
| 22 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 22 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 23 | /* Refer to IS31 manual for these locations | 23 | /* Refer to IS31 manual for these locations |
| 24 | * driver | 24 | * driver |
| 25 | * | R location | 25 | * | R location |
diff --git a/keyboards/kbdfans/bella/rgb/rgb.c b/keyboards/kbdfans/bella/rgb/rgb.c index 8bdc1d8fdf..c666f9198f 100644 --- a/keyboards/kbdfans/bella/rgb/rgb.c +++ b/keyboards/kbdfans/bella/rgb/rgb.c | |||
| @@ -15,7 +15,7 @@ | |||
| 15 | */ | 15 | */ |
| 16 | #include "quantum.h" | 16 | #include "quantum.h" |
| 17 | #ifdef RGB_MATRIX_ENABLE | 17 | #ifdef RGB_MATRIX_ENABLE |
| 18 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 18 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 19 | {0, CS18_SW1, CS17_SW1, CS16_SW1}, /* RGB6 */ | 19 | {0, CS18_SW1, CS17_SW1, CS16_SW1}, /* RGB6 */ |
| 20 | {0, CS18_SW3, CS17_SW3, CS16_SW3}, /* RGB32 */ | 20 | {0, CS18_SW3, CS17_SW3, CS16_SW3}, /* RGB32 */ |
| 21 | {0, CS18_SW4, CS17_SW4, CS16_SW4}, /* RGB45 */ | 21 | {0, CS18_SW4, CS17_SW4, CS16_SW4}, /* RGB45 */ |
diff --git a/keyboards/kbdfans/bella/rgb_iso/rgb_iso.c b/keyboards/kbdfans/bella/rgb_iso/rgb_iso.c index e36b811bbc..b4fc00765f 100644 --- a/keyboards/kbdfans/bella/rgb_iso/rgb_iso.c +++ b/keyboards/kbdfans/bella/rgb_iso/rgb_iso.c | |||
| @@ -15,7 +15,7 @@ | |||
| 15 | */ | 15 | */ |
| 16 | #include "quantum.h" | 16 | #include "quantum.h" |
| 17 | #ifdef RGB_MATRIX_ENABLE | 17 | #ifdef RGB_MATRIX_ENABLE |
| 18 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 18 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 19 | {0, CS18_SW1, CS17_SW1, CS16_SW1}, /* RGB6 */ | 19 | {0, CS18_SW1, CS17_SW1, CS16_SW1}, /* RGB6 */ |
| 20 | {0, CS18_SW3, CS17_SW3, CS16_SW3}, /* RGB32 */ | 20 | {0, CS18_SW3, CS17_SW3, CS16_SW3}, /* RGB32 */ |
| 21 | {0, CS18_SW4, CS17_SW4, CS16_SW4}, /* RGB45 */ | 21 | {0, CS18_SW4, CS17_SW4, CS16_SW4}, /* RGB45 */ |
diff --git a/keyboards/kbdfans/boop65/rgb/rgb.c b/keyboards/kbdfans/boop65/rgb/rgb.c index f2b5858966..b8145382c7 100644 --- a/keyboards/kbdfans/boop65/rgb/rgb.c +++ b/keyboards/kbdfans/boop65/rgb/rgb.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 22 | {0, CS21_SW1, CS20_SW1, CS19_SW1}, | 22 | {0, CS21_SW1, CS20_SW1, CS19_SW1}, |
| 23 | {0, CS21_SW2, CS20_SW2, CS19_SW2}, | 23 | {0, CS21_SW2, CS20_SW2, CS19_SW2}, |
| 24 | {0, CS21_SW3, CS20_SW3, CS19_SW3}, | 24 | {0, CS21_SW3, CS20_SW3, CS19_SW3}, |
diff --git a/keyboards/kbdfans/kbd67/mkiirgb/v1/v1.c b/keyboards/kbdfans/kbd67/mkiirgb/v1/v1.c index c70622dd56..210be85d3f 100644 --- a/keyboards/kbdfans/kbd67/mkiirgb/v1/v1.c +++ b/keyboards/kbdfans/kbd67/mkiirgb/v1/v1.c | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | 16 | ||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | #ifdef RGB_MATRIX_ENABLE | 18 | #ifdef RGB_MATRIX_ENABLE |
| 19 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 19 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 20 | 20 | ||
| 21 | {0, C8_8, C7_8, C6_8}, // LA17 | 21 | {0, C8_8, C7_8, C6_8}, // LA17 |
| 22 | {0, C9_8, C7_7, C6_7}, // LA16 | 22 | {0, C9_8, C7_7, C6_7}, // LA16 |
diff --git a/keyboards/kbdfans/kbd67/mkiirgb/v2/v2.c b/keyboards/kbdfans/kbd67/mkiirgb/v2/v2.c index 7de8060d7a..50958017a2 100644 --- a/keyboards/kbdfans/kbd67/mkiirgb/v2/v2.c +++ b/keyboards/kbdfans/kbd67/mkiirgb/v2/v2.c | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | 16 | ||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | #ifdef RGB_MATRIX_ENABLE | 18 | #ifdef RGB_MATRIX_ENABLE |
| 19 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 19 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 20 | 20 | ||
| 21 | {0, C8_8, C7_8, C6_8}, // LA17 | 21 | {0, C8_8, C7_8, C6_8}, // LA17 |
| 22 | {0, C9_8, C7_7, C6_7}, // LA16 | 22 | {0, C9_8, C7_7, C6_7}, // LA16 |
diff --git a/keyboards/kbdfans/kbd67/mkiirgb/v3/v3.c b/keyboards/kbdfans/kbd67/mkiirgb/v3/v3.c index 7347a365bc..5910d0cf7b 100755 --- a/keyboards/kbdfans/kbd67/mkiirgb/v3/v3.c +++ b/keyboards/kbdfans/kbd67/mkiirgb/v3/v3.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 22 | {0, CS21_SW1, CS20_SW1, CS19_SW1}, | 22 | {0, CS21_SW1, CS20_SW1, CS19_SW1}, |
| 23 | {0, CS21_SW2, CS20_SW2, CS19_SW2}, | 23 | {0, CS21_SW2, CS20_SW2, CS19_SW2}, |
| 24 | {0, CS21_SW3, CS20_SW3, CS19_SW3}, | 24 | {0, CS21_SW3, CS20_SW3, CS19_SW3}, |
diff --git a/keyboards/kbdfans/kbdmini/kbdmini.c b/keyboards/kbdfans/kbdmini/kbdmini.c index d46283b973..31b2e1a256 100644 --- a/keyboards/kbdfans/kbdmini/kbdmini.c +++ b/keyboards/kbdfans/kbdmini/kbdmini.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | #include "quantum.h" | 1 | #include "quantum.h" |
| 2 | 2 | ||
| 3 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 3 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 4 | { 0, B_9, A_9, C_9 }, //LA33 | 4 | { 0, B_9, A_9, C_9 }, //LA33 |
| 5 | { 0, B_10, A_10, C_10 }, //LA37 | 5 | { 0, B_10, A_10, C_10 }, //LA37 |
| 6 | { 0, B_11, A_11, C_11 }, //LA41 | 6 | { 0, B_11, A_11, C_11 }, //LA41 |
diff --git a/keyboards/kbdfans/maja/maja.c b/keyboards/kbdfans/maja/maja.c index d30d327113..cc073930bc 100755 --- a/keyboards/kbdfans/maja/maja.c +++ b/keyboards/kbdfans/maja/maja.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | #include "quantum.h" | 1 | #include "quantum.h" |
| 2 | 2 | ||
| 3 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 3 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 4 | {0, C2_1, C3_1, C4_1}, // LA0 | 4 | {0, C2_1, C3_1, C4_1}, // LA0 |
| 5 | {0, C1_1, C3_2, C4_2}, // LA1 | 5 | {0, C1_1, C3_2, C4_2}, // LA1 |
| 6 | {0, C1_2, C2_2, C4_3}, // LA2 | 6 | {0, C1_2, C2_2, C4_3}, // LA2 |
diff --git a/keyboards/keychron/c1_pro/ansi/rgb/rgb.c b/keyboards/keychron/c1_pro/ansi/rgb/rgb.c index c04e82a44e..38d4a96d3e 100644 --- a/keyboards/keychron/c1_pro/ansi/rgb/rgb.c +++ b/keyboards/keychron/c1_pro/ansi/rgb/rgb.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | // clang-format off | 19 | // clang-format off |
| 20 | #ifdef RGB_MATRIX_ENABLE | 20 | #ifdef RGB_MATRIX_ENABLE |
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/c1_pro/ansi/white/white.c b/keyboards/keychron/c1_pro/ansi/white/white.c index 15f291e80c..d7b75e0dd6 100644 --- a/keyboards/keychron/c1_pro/ansi/white/white.c +++ b/keyboards/keychron/c1_pro/ansi/white/white.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | // clang-format off | 19 | // clang-format off |
| 20 | #ifdef LED_MATRIX_ENABLE | 20 | #ifdef LED_MATRIX_ENABLE |
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[LED_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | LED address | 24 | * | LED address |
diff --git a/keyboards/keychron/c2_pro/ansi/rgb/rgb.c b/keyboards/keychron/c2_pro/ansi/rgb/rgb.c index d42c2de39e..6fce51417c 100644 --- a/keyboards/keychron/c2_pro/ansi/rgb/rgb.c +++ b/keyboards/keychron/c2_pro/ansi/rgb/rgb.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 21 | /* Refer to SNLED27351 manual for these locations | 21 | /* Refer to SNLED27351 manual for these locations |
| 22 | * driver | 22 | * driver |
| 23 | * | R location | 23 | * | R location |
diff --git a/keyboards/keychron/c2_pro/ansi/white/white.c b/keyboards/keychron/c2_pro/ansi/white/white.c index 9c75e73c6d..4bad7187cc 100644 --- a/keyboards/keychron/c2_pro/ansi/white/white.c +++ b/keyboards/keychron/c2_pro/ansi/white/white.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | // clang-format off | 19 | // clang-format off |
| 20 | #ifdef LED_MATRIX_ENABLE | 20 | #ifdef LED_MATRIX_ENABLE |
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[LED_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | LED address | 24 | * | LED address |
diff --git a/keyboards/keychron/q0/base/base.c b/keyboards/keychron/q0/base/base.c index 05803234c0..b977471730 100644 --- a/keyboards/keychron/q0/base/base.c +++ b/keyboards/keychron/q0/base/base.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/q0/plus/plus.c b/keyboards/keychron/q0/plus/plus.c index 0466e1a584..4af7a4572f 100644 --- a/keyboards/keychron/q0/plus/plus.c +++ b/keyboards/keychron/q0/plus/plus.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/q10/ansi_encoder/ansi_encoder.c b/keyboards/keychron/q10/ansi_encoder/ansi_encoder.c index a9df1609e0..06947e9d18 100644 --- a/keyboards/keychron/q10/ansi_encoder/ansi_encoder.c +++ b/keyboards/keychron/q10/ansi_encoder/ansi_encoder.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/q10/iso_encoder/iso_encoder.c b/keyboards/keychron/q10/iso_encoder/iso_encoder.c index fbe4bca637..2aebd936ec 100644 --- a/keyboards/keychron/q10/iso_encoder/iso_encoder.c +++ b/keyboards/keychron/q10/iso_encoder/iso_encoder.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/q11/ansi_encoder/ansi_encoder.c b/keyboards/keychron/q11/ansi_encoder/ansi_encoder.c index f7acae7add..24b9836b2e 100755 --- a/keyboards/keychron/q11/ansi_encoder/ansi_encoder.c +++ b/keyboards/keychron/q11/ansi_encoder/ansi_encoder.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 21 | /* Refer to SNLED27351 manual for these locations | 21 | /* Refer to SNLED27351 manual for these locations |
| 22 | * driver | 22 | * driver |
| 23 | * | R location | 23 | * | R location |
diff --git a/keyboards/keychron/q11/iso_encoder/iso_encoder.c b/keyboards/keychron/q11/iso_encoder/iso_encoder.c index a2db569710..feedfd17c3 100755 --- a/keyboards/keychron/q11/iso_encoder/iso_encoder.c +++ b/keyboards/keychron/q11/iso_encoder/iso_encoder.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 21 | /* Refer to SNLED27351 manual for these locations | 21 | /* Refer to SNLED27351 manual for these locations |
| 22 | * driver | 22 | * driver |
| 23 | * | R location | 23 | * | R location |
diff --git a/keyboards/keychron/q12/ansi_encoder/ansi_encoder.c b/keyboards/keychron/q12/ansi_encoder/ansi_encoder.c index 350da52661..e2acddd894 100644 --- a/keyboards/keychron/q12/ansi_encoder/ansi_encoder.c +++ b/keyboards/keychron/q12/ansi_encoder/ansi_encoder.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 21 | /* Refer to SNLED27351 manual for these locations | 21 | /* Refer to SNLED27351 manual for these locations |
| 22 | * driver | 22 | * driver |
| 23 | * | R location | 23 | * | R location |
diff --git a/keyboards/keychron/q12/iso_encoder/iso_encoder.c b/keyboards/keychron/q12/iso_encoder/iso_encoder.c index 37d9db10b4..f05a35dad8 100644 --- a/keyboards/keychron/q12/iso_encoder/iso_encoder.c +++ b/keyboards/keychron/q12/iso_encoder/iso_encoder.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/q1v1/ansi/ansi.c b/keyboards/keychron/q1v1/ansi/ansi.c index 5f74267bf4..bc352a1964 100644 --- a/keyboards/keychron/q1v1/ansi/ansi.c +++ b/keyboards/keychron/q1v1/ansi/ansi.c | |||
| @@ -26,7 +26,7 @@ const matrix_row_t matrix_mask[] = { | |||
| 26 | }; | 26 | }; |
| 27 | 27 | ||
| 28 | #ifdef RGB_MATRIX_ENABLE | 28 | #ifdef RGB_MATRIX_ENABLE |
| 29 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 29 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 30 | /* Refer to IS31 manual for these locations | 30 | /* Refer to IS31 manual for these locations |
| 31 | * driver | 31 | * driver |
| 32 | * | R location | 32 | * | R location |
diff --git a/keyboards/keychron/q1v1/ansi_encoder/ansi_encoder.c b/keyboards/keychron/q1v1/ansi_encoder/ansi_encoder.c index c4fc884bc2..387f3e0b32 100644 --- a/keyboards/keychron/q1v1/ansi_encoder/ansi_encoder.c +++ b/keyboards/keychron/q1v1/ansi_encoder/ansi_encoder.c | |||
| @@ -26,7 +26,7 @@ const matrix_row_t matrix_mask[] = { | |||
| 26 | }; | 26 | }; |
| 27 | 27 | ||
| 28 | #ifdef RGB_MATRIX_ENABLE | 28 | #ifdef RGB_MATRIX_ENABLE |
| 29 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 29 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 30 | /* Refer to IS31 manual for these locations | 30 | /* Refer to IS31 manual for these locations |
| 31 | * driver | 31 | * driver |
| 32 | * | R location | 32 | * | R location |
diff --git a/keyboards/keychron/q1v1/iso/iso.c b/keyboards/keychron/q1v1/iso/iso.c index 874f5c8539..ad3152adcd 100644 --- a/keyboards/keychron/q1v1/iso/iso.c +++ b/keyboards/keychron/q1v1/iso/iso.c | |||
| @@ -26,7 +26,7 @@ const matrix_row_t matrix_mask[] = { | |||
| 26 | }; | 26 | }; |
| 27 | 27 | ||
| 28 | #ifdef RGB_MATRIX_ENABLE | 28 | #ifdef RGB_MATRIX_ENABLE |
| 29 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 29 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 30 | /* Refer to IS31 manual for these locations | 30 | /* Refer to IS31 manual for these locations |
| 31 | * driver | 31 | * driver |
| 32 | * | R location | 32 | * | R location |
diff --git a/keyboards/keychron/q1v1/iso_encoder/iso_encoder.c b/keyboards/keychron/q1v1/iso_encoder/iso_encoder.c index 4a7496ed29..19122aa18d 100644 --- a/keyboards/keychron/q1v1/iso_encoder/iso_encoder.c +++ b/keyboards/keychron/q1v1/iso_encoder/iso_encoder.c | |||
| @@ -27,7 +27,7 @@ const matrix_row_t matrix_mask[] = { | |||
| 27 | 27 | ||
| 28 | #ifdef RGB_MATRIX_ENABLE | 28 | #ifdef RGB_MATRIX_ENABLE |
| 29 | 29 | ||
| 30 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 30 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 31 | /* Refer to IS31 manual for these locations | 31 | /* Refer to IS31 manual for these locations |
| 32 | * driver | 32 | * driver |
| 33 | * | R location | 33 | * | R location |
diff --git a/keyboards/keychron/q1v2/ansi/ansi.c b/keyboards/keychron/q1v2/ansi/ansi.c index 3b80c9d5c4..a25b597b03 100644 --- a/keyboards/keychron/q1v2/ansi/ansi.c +++ b/keyboards/keychron/q1v2/ansi/ansi.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/q1v2/ansi_encoder/ansi_encoder.c b/keyboards/keychron/q1v2/ansi_encoder/ansi_encoder.c index 3b80c9d5c4..a25b597b03 100644 --- a/keyboards/keychron/q1v2/ansi_encoder/ansi_encoder.c +++ b/keyboards/keychron/q1v2/ansi_encoder/ansi_encoder.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/q1v2/iso/iso.c b/keyboards/keychron/q1v2/iso/iso.c index d879e55083..53cdea506f 100644 --- a/keyboards/keychron/q1v2/iso/iso.c +++ b/keyboards/keychron/q1v2/iso/iso.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/q1v2/iso_encoder/iso_encoder.c b/keyboards/keychron/q1v2/iso_encoder/iso_encoder.c index d879e55083..53cdea506f 100644 --- a/keyboards/keychron/q1v2/iso_encoder/iso_encoder.c +++ b/keyboards/keychron/q1v2/iso_encoder/iso_encoder.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/q1v2/jis/jis.c b/keyboards/keychron/q1v2/jis/jis.c index e8c0112649..d43d64dd82 100644 --- a/keyboards/keychron/q1v2/jis/jis.c +++ b/keyboards/keychron/q1v2/jis/jis.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/q1v2/jis_encoder/jis_encoder.c b/keyboards/keychron/q1v2/jis_encoder/jis_encoder.c index e8c0112649..d43d64dd82 100644 --- a/keyboards/keychron/q1v2/jis_encoder/jis_encoder.c +++ b/keyboards/keychron/q1v2/jis_encoder/jis_encoder.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/q2/ansi/ansi.c b/keyboards/keychron/q2/ansi/ansi.c index d0ff0a1869..64abe016a6 100644 --- a/keyboards/keychron/q2/ansi/ansi.c +++ b/keyboards/keychron/q2/ansi/ansi.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 21 | /* Refer to SNLED27351 manual for these locations | 21 | /* Refer to SNLED27351 manual for these locations |
| 22 | * driver | 22 | * driver |
| 23 | * | R location | 23 | * | R location |
diff --git a/keyboards/keychron/q2/ansi_encoder/ansi_encoder.c b/keyboards/keychron/q2/ansi_encoder/ansi_encoder.c index d0ff0a1869..64abe016a6 100644 --- a/keyboards/keychron/q2/ansi_encoder/ansi_encoder.c +++ b/keyboards/keychron/q2/ansi_encoder/ansi_encoder.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 21 | /* Refer to SNLED27351 manual for these locations | 21 | /* Refer to SNLED27351 manual for these locations |
| 22 | * driver | 22 | * driver |
| 23 | * | R location | 23 | * | R location |
diff --git a/keyboards/keychron/q2/iso/iso.c b/keyboards/keychron/q2/iso/iso.c index a54c90bc4b..7da02c4a79 100644 --- a/keyboards/keychron/q2/iso/iso.c +++ b/keyboards/keychron/q2/iso/iso.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 21 | /* Refer to SNLED27351 manual for these locations | 21 | /* Refer to SNLED27351 manual for these locations |
| 22 | * driver | 22 | * driver |
| 23 | * | R location | 23 | * | R location |
diff --git a/keyboards/keychron/q2/iso_encoder/iso_encoder.c b/keyboards/keychron/q2/iso_encoder/iso_encoder.c index a54c90bc4b..7da02c4a79 100644 --- a/keyboards/keychron/q2/iso_encoder/iso_encoder.c +++ b/keyboards/keychron/q2/iso_encoder/iso_encoder.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 21 | /* Refer to SNLED27351 manual for these locations | 21 | /* Refer to SNLED27351 manual for these locations |
| 22 | * driver | 22 | * driver |
| 23 | * | R location | 23 | * | R location |
diff --git a/keyboards/keychron/q2/jis/jis.c b/keyboards/keychron/q2/jis/jis.c index d877e225d9..b8d36be505 100644 --- a/keyboards/keychron/q2/jis/jis.c +++ b/keyboards/keychron/q2/jis/jis.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/q2/jis_encoder/jis_encoder.c b/keyboards/keychron/q2/jis_encoder/jis_encoder.c index d877e225d9..b8d36be505 100644 --- a/keyboards/keychron/q2/jis_encoder/jis_encoder.c +++ b/keyboards/keychron/q2/jis_encoder/jis_encoder.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/q3/ansi/ansi.c b/keyboards/keychron/q3/ansi/ansi.c index 8327ee430b..a2793b040c 100644 --- a/keyboards/keychron/q3/ansi/ansi.c +++ b/keyboards/keychron/q3/ansi/ansi.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/q3/ansi_encoder/ansi_encoder.c b/keyboards/keychron/q3/ansi_encoder/ansi_encoder.c index a386e87a01..3b88a83d38 100644 --- a/keyboards/keychron/q3/ansi_encoder/ansi_encoder.c +++ b/keyboards/keychron/q3/ansi_encoder/ansi_encoder.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/q3/iso/iso.c b/keyboards/keychron/q3/iso/iso.c index 725af67006..37f418e66b 100644 --- a/keyboards/keychron/q3/iso/iso.c +++ b/keyboards/keychron/q3/iso/iso.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/q3/iso_encoder/iso_encoder.c b/keyboards/keychron/q3/iso_encoder/iso_encoder.c index 725af67006..37f418e66b 100644 --- a/keyboards/keychron/q3/iso_encoder/iso_encoder.c +++ b/keyboards/keychron/q3/iso_encoder/iso_encoder.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/q3/jis/jis.c b/keyboards/keychron/q3/jis/jis.c index 4b19eca52f..0fc70b1af3 100644 --- a/keyboards/keychron/q3/jis/jis.c +++ b/keyboards/keychron/q3/jis/jis.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/q3/jis_encoder/jis_encoder.c b/keyboards/keychron/q3/jis_encoder/jis_encoder.c index 8770f9d33c..df4a6a467b 100644 --- a/keyboards/keychron/q3/jis_encoder/jis_encoder.c +++ b/keyboards/keychron/q3/jis_encoder/jis_encoder.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/q4/ansi/v1/v1.c b/keyboards/keychron/q4/ansi/v1/v1.c index 6c1fecefec..f9e2946bb3 100644 --- a/keyboards/keychron/q4/ansi/v1/v1.c +++ b/keyboards/keychron/q4/ansi/v1/v1.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/q4/ansi/v2/v2.c b/keyboards/keychron/q4/ansi/v2/v2.c index 468a87af41..f7564c02a1 100644 --- a/keyboards/keychron/q4/ansi/v2/v2.c +++ b/keyboards/keychron/q4/ansi/v2/v2.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/q4/iso/iso.c b/keyboards/keychron/q4/iso/iso.c index a808c3ad74..c30f06c6bd 100644 --- a/keyboards/keychron/q4/iso/iso.c +++ b/keyboards/keychron/q4/iso/iso.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/q5/ansi/ansi.c b/keyboards/keychron/q5/ansi/ansi.c index 8c80245fbc..26cebc996e 100644 --- a/keyboards/keychron/q5/ansi/ansi.c +++ b/keyboards/keychron/q5/ansi/ansi.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/q5/ansi_encoder/ansi_encoder.c b/keyboards/keychron/q5/ansi_encoder/ansi_encoder.c index d5f67f1297..90a9310c64 100644 --- a/keyboards/keychron/q5/ansi_encoder/ansi_encoder.c +++ b/keyboards/keychron/q5/ansi_encoder/ansi_encoder.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/q5/iso/iso.c b/keyboards/keychron/q5/iso/iso.c index 8a7cb863ec..48fdcb7363 100644 --- a/keyboards/keychron/q5/iso/iso.c +++ b/keyboards/keychron/q5/iso/iso.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/q5/iso_encoder/iso_encoder.c b/keyboards/keychron/q5/iso_encoder/iso_encoder.c index 009e8043db..65b5c40c5a 100644 --- a/keyboards/keychron/q5/iso_encoder/iso_encoder.c +++ b/keyboards/keychron/q5/iso_encoder/iso_encoder.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/q6/ansi/ansi.c b/keyboards/keychron/q6/ansi/ansi.c index 80eaad02b3..b9f249e281 100644 --- a/keyboards/keychron/q6/ansi/ansi.c +++ b/keyboards/keychron/q6/ansi/ansi.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/q6/ansi_encoder/ansi_encoder.c b/keyboards/keychron/q6/ansi_encoder/ansi_encoder.c index 9c88533620..4064329099 100644 --- a/keyboards/keychron/q6/ansi_encoder/ansi_encoder.c +++ b/keyboards/keychron/q6/ansi_encoder/ansi_encoder.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/q6/iso/iso.c b/keyboards/keychron/q6/iso/iso.c index d2aa010c05..8cdee4cf3b 100644 --- a/keyboards/keychron/q6/iso/iso.c +++ b/keyboards/keychron/q6/iso/iso.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/q6/iso_encoder/iso_encoder.c b/keyboards/keychron/q6/iso_encoder/iso_encoder.c index 66e066b839..5ff71379c9 100644 --- a/keyboards/keychron/q6/iso_encoder/iso_encoder.c +++ b/keyboards/keychron/q6/iso_encoder/iso_encoder.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/q60/ansi/ansi.c b/keyboards/keychron/q60/ansi/ansi.c index ac72737146..f02d45b42a 100644 --- a/keyboards/keychron/q60/ansi/ansi.c +++ b/keyboards/keychron/q60/ansi/ansi.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/q65/ansi_encoder/ansi_encoder.c b/keyboards/keychron/q65/ansi_encoder/ansi_encoder.c index 8e9b37b806..3ed44a7387 100644 --- a/keyboards/keychron/q65/ansi_encoder/ansi_encoder.c +++ b/keyboards/keychron/q65/ansi_encoder/ansi_encoder.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/q7/ansi/ansi.c b/keyboards/keychron/q7/ansi/ansi.c index 190c110a77..dfb8cd1295 100644 --- a/keyboards/keychron/q7/ansi/ansi.c +++ b/keyboards/keychron/q7/ansi/ansi.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/q7/iso/iso.c b/keyboards/keychron/q7/iso/iso.c index 13354b9f0b..7564099156 100644 --- a/keyboards/keychron/q7/iso/iso.c +++ b/keyboards/keychron/q7/iso/iso.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/q8/ansi/ansi.c b/keyboards/keychron/q8/ansi/ansi.c index 12cd9f9378..fbb6813448 100644 --- a/keyboards/keychron/q8/ansi/ansi.c +++ b/keyboards/keychron/q8/ansi/ansi.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/q8/ansi_encoder/ansi_encoder.c b/keyboards/keychron/q8/ansi_encoder/ansi_encoder.c index 12cd9f9378..fbb6813448 100644 --- a/keyboards/keychron/q8/ansi_encoder/ansi_encoder.c +++ b/keyboards/keychron/q8/ansi_encoder/ansi_encoder.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/q8/iso/iso.c b/keyboards/keychron/q8/iso/iso.c index 55020c0c2b..aab7ab357b 100644 --- a/keyboards/keychron/q8/iso/iso.c +++ b/keyboards/keychron/q8/iso/iso.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/q8/iso_encoder/iso_encoder.c b/keyboards/keychron/q8/iso_encoder/iso_encoder.c index 55020c0c2b..aab7ab357b 100644 --- a/keyboards/keychron/q8/iso_encoder/iso_encoder.c +++ b/keyboards/keychron/q8/iso_encoder/iso_encoder.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/q9/ansi/ansi.c b/keyboards/keychron/q9/ansi/ansi.c index 9178c8dcc7..90dcc2d0a5 100644 --- a/keyboards/keychron/q9/ansi/ansi.c +++ b/keyboards/keychron/q9/ansi/ansi.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/q9/ansi_encoder/ansi_encoder.c b/keyboards/keychron/q9/ansi_encoder/ansi_encoder.c index 58d66e0473..84d4c4be9d 100644 --- a/keyboards/keychron/q9/ansi_encoder/ansi_encoder.c +++ b/keyboards/keychron/q9/ansi_encoder/ansi_encoder.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/q9/iso/iso.c b/keyboards/keychron/q9/iso/iso.c index 1917b61f37..2f8d78feb2 100644 --- a/keyboards/keychron/q9/iso/iso.c +++ b/keyboards/keychron/q9/iso/iso.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/q9/iso_encoder/iso_encoder.c b/keyboards/keychron/q9/iso_encoder/iso_encoder.c index 3a161fe9d7..4706ab3f39 100644 --- a/keyboards/keychron/q9/iso_encoder/iso_encoder.c +++ b/keyboards/keychron/q9/iso_encoder/iso_encoder.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/q9_plus/ansi_encoder/ansi_encoder.c b/keyboards/keychron/q9_plus/ansi_encoder/ansi_encoder.c index d264334fa0..ffc213b75b 100755 --- a/keyboards/keychron/q9_plus/ansi_encoder/ansi_encoder.c +++ b/keyboards/keychron/q9_plus/ansi_encoder/ansi_encoder.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 21 | /* Refer to SNLED27351 manual for these locations | 21 | /* Refer to SNLED27351 manual for these locations |
| 22 | * driver | 22 | * driver |
| 23 | * | R location | 23 | * | R location |
diff --git a/keyboards/keychron/s1/ansi/rgb/rgb.c b/keyboards/keychron/s1/ansi/rgb/rgb.c index ca39b0c796..e81e7db402 100644 --- a/keyboards/keychron/s1/ansi/rgb/rgb.c +++ b/keyboards/keychron/s1/ansi/rgb/rgb.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/s1/ansi/white/white.c b/keyboards/keychron/s1/ansi/white/white.c index b3a49ae9eb..d6a5eaf232 100644 --- a/keyboards/keychron/s1/ansi/white/white.c +++ b/keyboards/keychron/s1/ansi/white/white.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[LED_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | LED address | 26 | * | LED address |
diff --git a/keyboards/keychron/v1/ansi/ansi.c b/keyboards/keychron/v1/ansi/ansi.c index ed8a6ed1af..2db3ab782d 100644 --- a/keyboards/keychron/v1/ansi/ansi.c +++ b/keyboards/keychron/v1/ansi/ansi.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/v1/ansi_encoder/ansi_encoder.c b/keyboards/keychron/v1/ansi_encoder/ansi_encoder.c index ed8a6ed1af..2db3ab782d 100644 --- a/keyboards/keychron/v1/ansi_encoder/ansi_encoder.c +++ b/keyboards/keychron/v1/ansi_encoder/ansi_encoder.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/v1/iso/iso.c b/keyboards/keychron/v1/iso/iso.c index 00909c85e3..dff029055b 100644 --- a/keyboards/keychron/v1/iso/iso.c +++ b/keyboards/keychron/v1/iso/iso.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/v1/iso_encoder/iso_encoder.c b/keyboards/keychron/v1/iso_encoder/iso_encoder.c index 00909c85e3..dff029055b 100644 --- a/keyboards/keychron/v1/iso_encoder/iso_encoder.c +++ b/keyboards/keychron/v1/iso_encoder/iso_encoder.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/v1/jis/jis.c b/keyboards/keychron/v1/jis/jis.c index 6bc647656d..029c58fd70 100644 --- a/keyboards/keychron/v1/jis/jis.c +++ b/keyboards/keychron/v1/jis/jis.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/v1/jis_encoder/jis_encoder.c b/keyboards/keychron/v1/jis_encoder/jis_encoder.c index 6bc647656d..029c58fd70 100644 --- a/keyboards/keychron/v1/jis_encoder/jis_encoder.c +++ b/keyboards/keychron/v1/jis_encoder/jis_encoder.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/v10/ansi_encoder/ansi_encoder.c b/keyboards/keychron/v10/ansi_encoder/ansi_encoder.c index 8b787aad18..10cf2a85fd 100644 --- a/keyboards/keychron/v10/ansi_encoder/ansi_encoder.c +++ b/keyboards/keychron/v10/ansi_encoder/ansi_encoder.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/v10/iso_encoder/iso_encoder.c b/keyboards/keychron/v10/iso_encoder/iso_encoder.c index f7e0a10470..b4bfb69206 100644 --- a/keyboards/keychron/v10/iso_encoder/iso_encoder.c +++ b/keyboards/keychron/v10/iso_encoder/iso_encoder.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/v2/ansi/ansi.c b/keyboards/keychron/v2/ansi/ansi.c index d98a96fdf9..7e3214f175 100644 --- a/keyboards/keychron/v2/ansi/ansi.c +++ b/keyboards/keychron/v2/ansi/ansi.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/v2/ansi_encoder/ansi_encoder.c b/keyboards/keychron/v2/ansi_encoder/ansi_encoder.c index 64153d4251..df33725b5e 100644 --- a/keyboards/keychron/v2/ansi_encoder/ansi_encoder.c +++ b/keyboards/keychron/v2/ansi_encoder/ansi_encoder.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/v2/iso/iso.c b/keyboards/keychron/v2/iso/iso.c index 37cac7337d..ba9d47a2f1 100644 --- a/keyboards/keychron/v2/iso/iso.c +++ b/keyboards/keychron/v2/iso/iso.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/v2/iso_encoder/iso_encoder.c b/keyboards/keychron/v2/iso_encoder/iso_encoder.c index 37cac7337d..ba9d47a2f1 100644 --- a/keyboards/keychron/v2/iso_encoder/iso_encoder.c +++ b/keyboards/keychron/v2/iso_encoder/iso_encoder.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/v2/jis/jis.c b/keyboards/keychron/v2/jis/jis.c index 42285e56ca..0d638b5753 100644 --- a/keyboards/keychron/v2/jis/jis.c +++ b/keyboards/keychron/v2/jis/jis.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/v2/jis_encoder/jis_encoder.c b/keyboards/keychron/v2/jis_encoder/jis_encoder.c index 5ccbb807cb..10a3ca25a7 100644 --- a/keyboards/keychron/v2/jis_encoder/jis_encoder.c +++ b/keyboards/keychron/v2/jis_encoder/jis_encoder.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/v3/ansi/ansi.c b/keyboards/keychron/v3/ansi/ansi.c index 16d6b77131..6205b0b01b 100644 --- a/keyboards/keychron/v3/ansi/ansi.c +++ b/keyboards/keychron/v3/ansi/ansi.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/v3/ansi_encoder/ansi_encoder.c b/keyboards/keychron/v3/ansi_encoder/ansi_encoder.c index 39fa354539..27f1f1f830 100644 --- a/keyboards/keychron/v3/ansi_encoder/ansi_encoder.c +++ b/keyboards/keychron/v3/ansi_encoder/ansi_encoder.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/v3/iso/iso.c b/keyboards/keychron/v3/iso/iso.c index 24b406467a..be0934b4a0 100644 --- a/keyboards/keychron/v3/iso/iso.c +++ b/keyboards/keychron/v3/iso/iso.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/v3/iso_encoder/iso_encoder.c b/keyboards/keychron/v3/iso_encoder/iso_encoder.c index 53fe99aac0..0456fb99f9 100644 --- a/keyboards/keychron/v3/iso_encoder/iso_encoder.c +++ b/keyboards/keychron/v3/iso_encoder/iso_encoder.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/v3/jis/jis.c b/keyboards/keychron/v3/jis/jis.c index 70dbf812fa..be93dbc641 100644 --- a/keyboards/keychron/v3/jis/jis.c +++ b/keyboards/keychron/v3/jis/jis.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/v3/jis_encoder/jis_encoder.c b/keyboards/keychron/v3/jis_encoder/jis_encoder.c index cf1065eed9..9eea7b3994 100644 --- a/keyboards/keychron/v3/jis_encoder/jis_encoder.c +++ b/keyboards/keychron/v3/jis_encoder/jis_encoder.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/v4/ansi/ansi.c b/keyboards/keychron/v4/ansi/ansi.c index 6326405380..24afdb65b7 100644 --- a/keyboards/keychron/v4/ansi/ansi.c +++ b/keyboards/keychron/v4/ansi/ansi.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/v4/iso/iso.c b/keyboards/keychron/v4/iso/iso.c index 9116135a4a..0b59f04d52 100644 --- a/keyboards/keychron/v4/iso/iso.c +++ b/keyboards/keychron/v4/iso/iso.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/v5/ansi/ansi.c b/keyboards/keychron/v5/ansi/ansi.c index 073fb0cde0..3f85b6b210 100644 --- a/keyboards/keychron/v5/ansi/ansi.c +++ b/keyboards/keychron/v5/ansi/ansi.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/v5/ansi_encoder/ansi_encoder.c b/keyboards/keychron/v5/ansi_encoder/ansi_encoder.c index 62ebc3f7b3..06c7ae6d92 100644 --- a/keyboards/keychron/v5/ansi_encoder/ansi_encoder.c +++ b/keyboards/keychron/v5/ansi_encoder/ansi_encoder.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/v5/iso/iso.c b/keyboards/keychron/v5/iso/iso.c index 1552de7d47..7b2739d53e 100644 --- a/keyboards/keychron/v5/iso/iso.c +++ b/keyboards/keychron/v5/iso/iso.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/v5/iso_encoder/iso_encoder.c b/keyboards/keychron/v5/iso_encoder/iso_encoder.c index 95eb62ae1f..9a13422d2c 100644 --- a/keyboards/keychron/v5/iso_encoder/iso_encoder.c +++ b/keyboards/keychron/v5/iso_encoder/iso_encoder.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/v6/ansi/ansi.c b/keyboards/keychron/v6/ansi/ansi.c index a3f1032a1e..be5bad84ff 100644 --- a/keyboards/keychron/v6/ansi/ansi.c +++ b/keyboards/keychron/v6/ansi/ansi.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 22 | /* Refer to SNLED27351 manual for these locations | 22 | /* Refer to SNLED27351 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/keychron/v6/ansi_encoder/ansi_encoder.c b/keyboards/keychron/v6/ansi_encoder/ansi_encoder.c index 02e0de0b3d..b83a5b0fb0 100644 --- a/keyboards/keychron/v6/ansi_encoder/ansi_encoder.c +++ b/keyboards/keychron/v6/ansi_encoder/ansi_encoder.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | #ifdef RGB_MATRIX_ENABLE | 21 | #ifdef RGB_MATRIX_ENABLE |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/v6/iso/iso.c b/keyboards/keychron/v6/iso/iso.c index 7804ca3600..1138cb07d7 100644 --- a/keyboards/keychron/v6/iso/iso.c +++ b/keyboards/keychron/v6/iso/iso.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | #ifdef RGB_MATRIX_ENABLE | 21 | #ifdef RGB_MATRIX_ENABLE |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/v6/iso_encoder/iso_encoder.c b/keyboards/keychron/v6/iso_encoder/iso_encoder.c index bd9189f8b5..47f609d817 100644 --- a/keyboards/keychron/v6/iso_encoder/iso_encoder.c +++ b/keyboards/keychron/v6/iso_encoder/iso_encoder.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | #ifdef RGB_MATRIX_ENABLE | 21 | #ifdef RGB_MATRIX_ENABLE |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/v7/ansi/ansi.c b/keyboards/keychron/v7/ansi/ansi.c index 07a98622a4..132f568519 100644 --- a/keyboards/keychron/v7/ansi/ansi.c +++ b/keyboards/keychron/v7/ansi/ansi.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/v7/iso/iso.c b/keyboards/keychron/v7/iso/iso.c index a35dcb2092..7aaeafe65e 100644 --- a/keyboards/keychron/v7/iso/iso.c +++ b/keyboards/keychron/v7/iso/iso.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/v8/ansi/ansi.c b/keyboards/keychron/v8/ansi/ansi.c index bda7ba1d74..e5840fe966 100644 --- a/keyboards/keychron/v8/ansi/ansi.c +++ b/keyboards/keychron/v8/ansi/ansi.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/v8/ansi_encoder/ansi_encoder.c b/keyboards/keychron/v8/ansi_encoder/ansi_encoder.c index bda7ba1d74..e5840fe966 100644 --- a/keyboards/keychron/v8/ansi_encoder/ansi_encoder.c +++ b/keyboards/keychron/v8/ansi_encoder/ansi_encoder.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/v8/iso/iso.c b/keyboards/keychron/v8/iso/iso.c index 88040c3ab8..07b350209d 100644 --- a/keyboards/keychron/v8/iso/iso.c +++ b/keyboards/keychron/v8/iso/iso.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/keychron/v8/iso_encoder/iso_encoder.c b/keyboards/keychron/v8/iso_encoder/iso_encoder.c index 88040c3ab8..07b350209d 100644 --- a/keyboards/keychron/v8/iso_encoder/iso_encoder.c +++ b/keyboards/keychron/v8/iso_encoder/iso_encoder.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | // clang-format off | 21 | // clang-format off |
| 22 | 22 | ||
| 23 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 23 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 24 | /* Refer to SNLED27351 manual for these locations | 24 | /* Refer to SNLED27351 manual for these locations |
| 25 | * driver | 25 | * driver |
| 26 | * | R location | 26 | * | R location |
diff --git a/keyboards/kprepublic/bm40hsrgb/rev2/rev2.c b/keyboards/kprepublic/bm40hsrgb/rev2/rev2.c index 4bf9168935..8dd4cc2af1 100755 --- a/keyboards/kprepublic/bm40hsrgb/rev2/rev2.c +++ b/keyboards/kprepublic/bm40hsrgb/rev2/rev2.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | 17 | ||
| 18 | #if defined(RGB_MATRIX_ENABLE) | 18 | #if defined(RGB_MATRIX_ENABLE) |
| 19 | 19 | ||
| 20 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 21 | { 0, B_1, A_1, C_1 }, | 21 | { 0, B_1, A_1, C_1 }, |
| 22 | { 0, B_2, A_2, C_2 }, | 22 | { 0, B_2, A_2, C_2 }, |
| 23 | { 0, B_3, A_3, C_3 }, | 23 | { 0, B_3, A_3, C_3 }, |
diff --git a/keyboards/kprepublic/bm60hsrgb_ec/rev2/rev2.c b/keyboards/kprepublic/bm60hsrgb_ec/rev2/rev2.c index fc40e0fa9a..982bf39c52 100644 --- a/keyboards/kprepublic/bm60hsrgb_ec/rev2/rev2.c +++ b/keyboards/kprepublic/bm60hsrgb_ec/rev2/rev2.c | |||
| @@ -15,7 +15,7 @@ | |||
| 15 | #include "quantum.h" | 15 | #include "quantum.h" |
| 16 | 16 | ||
| 17 | #ifdef RGB_MATRIX_ENABLE | 17 | #ifdef RGB_MATRIX_ENABLE |
| 18 | const is31fl3733_led_t g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 18 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 19 | { 0, B_1, A_1, C_1 }, | 19 | { 0, B_1, A_1, C_1 }, |
| 20 | { 0, B_2, A_2, C_2 }, | 20 | { 0, B_2, A_2, C_2 }, |
| 21 | { 0, B_3, A_3, C_3 }, | 21 | { 0, B_3, A_3, C_3 }, |
diff --git a/keyboards/kprepublic/bm60hsrgb_iso/rev2/rev2.c b/keyboards/kprepublic/bm60hsrgb_iso/rev2/rev2.c index 2cfe18e08e..9cb9edba8e 100644 --- a/keyboards/kprepublic/bm60hsrgb_iso/rev2/rev2.c +++ b/keyboards/kprepublic/bm60hsrgb_iso/rev2/rev2.c | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | # include "ws2812.h" | 24 | # include "ws2812.h" |
| 25 | 25 | ||
| 26 | 26 | ||
| 27 | const PROGMEM is31fl3733_led_t g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { | 27 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 28 | { 0, B_1, A_1, C_1 }, | 28 | { 0, B_1, A_1, C_1 }, |
| 29 | { 0, B_2, A_2, C_2 }, | 29 | { 0, B_2, A_2, C_2 }, |
| 30 | { 0, B_3, A_3, C_3 }, | 30 | { 0, B_3, A_3, C_3 }, |
diff --git a/keyboards/kprepublic/bm68hsrgb/rev2/rev2.c b/keyboards/kprepublic/bm68hsrgb/rev2/rev2.c index 057b4669f5..357ce13e96 100644 --- a/keyboards/kprepublic/bm68hsrgb/rev2/rev2.c +++ b/keyboards/kprepublic/bm68hsrgb/rev2/rev2.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | 17 | ||
| 18 | #ifdef RGB_MATRIX_ENABLE | 18 | #ifdef RGB_MATRIX_ENABLE |
| 19 | 19 | ||
| 20 | const is31fl3741_led_t g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 21 | {0, CS6_SW1, CS5_SW1, CS4_SW1}, | 21 | {0, CS6_SW1, CS5_SW1, CS4_SW1}, |
| 22 | {0, CS6_SW2, CS5_SW2, CS4_SW2}, | 22 | {0, CS6_SW2, CS5_SW2, CS4_SW2}, |
| 23 | {0, CS6_SW3, CS5_SW3, CS4_SW3}, | 23 | {0, CS6_SW3, CS5_SW3, CS4_SW3}, |
diff --git a/keyboards/kprepublic/bm80v2/bm80v2.c b/keyboards/kprepublic/bm80v2/bm80v2.c index 13d67cdd56..3e3de08288 100644 --- a/keyboards/kprepublic/bm80v2/bm80v2.c +++ b/keyboards/kprepublic/bm80v2/bm80v2.c | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | 16 | ||
| 17 | #ifdef RGB_MATRIX_ENABLE | 17 | #ifdef RGB_MATRIX_ENABLE |
| 18 | 18 | ||
| 19 | const is31fl3741_led_t g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 19 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 20 | {0, CS6_SW1, CS5_SW1, CS4_SW1}, | 20 | {0, CS6_SW1, CS5_SW1, CS4_SW1}, |
| 21 | {0, CS6_SW3, CS5_SW3, CS4_SW3}, | 21 | {0, CS6_SW3, CS5_SW3, CS4_SW3}, |
| 22 | {0, CS6_SW4, CS5_SW4, CS4_SW4}, | 22 | {0, CS6_SW4, CS5_SW4, CS4_SW4}, |
diff --git a/keyboards/kprepublic/bm80v2_iso/bm80v2_iso.c b/keyboards/kprepublic/bm80v2_iso/bm80v2_iso.c index 3b8daf5fee..1d6e3df547 100644 --- a/keyboards/kprepublic/bm80v2_iso/bm80v2_iso.c +++ b/keyboards/kprepublic/bm80v2_iso/bm80v2_iso.c | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | 16 | ||
| 17 | #ifdef RGB_MATRIX_ENABLE | 17 | #ifdef RGB_MATRIX_ENABLE |
| 18 | 18 | ||
| 19 | const is31fl3741_led_t g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 19 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 20 | {0, CS6_SW1, CS5_SW1, CS4_SW1}, | 20 | {0, CS6_SW1, CS5_SW1, CS4_SW1}, |
| 21 | {0, CS6_SW3, CS5_SW3, CS4_SW3}, | 21 | {0, CS6_SW3, CS5_SW3, CS4_SW3}, |
| 22 | {0, CS6_SW4, CS5_SW4, CS4_SW4}, | 22 | {0, CS6_SW4, CS5_SW4, CS4_SW4}, |
diff --git a/keyboards/kprepublic/cstc40/daughterboard/daughterboard.c b/keyboards/kprepublic/cstc40/daughterboard/daughterboard.c index 39d3d7ff52..1df130fe53 100644 --- a/keyboards/kprepublic/cstc40/daughterboard/daughterboard.c +++ b/keyboards/kprepublic/cstc40/daughterboard/daughterboard.c | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | #include "quantum.h" | 16 | #include "quantum.h" |
| 17 | 17 | ||
| 18 | #ifdef RGB_MATRIX_ENABLE | 18 | #ifdef RGB_MATRIX_ENABLE |
| 19 | const is31_led g_is31_leds[RGB_MATRIX_LED_COUNT] = { | 19 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 20 | { 0, L_1, K_1, J_1 }, | 20 | { 0, L_1, K_1, J_1 }, |
| 21 | { 0, L_2, K_2, J_2 }, | 21 | { 0, L_2, K_2, J_2 }, |
| 22 | { 0, L_3, K_3, J_3 }, | 22 | { 0, L_3, K_3, J_3 }, |
diff --git a/keyboards/kprepublic/cstc40/single_pcb/single_pcb.c b/keyboards/kprepublic/cstc40/single_pcb/single_pcb.c index 39d3d7ff52..1df130fe53 100644 --- a/keyboards/kprepublic/cstc40/single_pcb/single_pcb.c +++ b/keyboards/kprepublic/cstc40/single_pcb/single_pcb.c | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | #include "quantum.h" | 16 | #include "quantum.h" |
| 17 | 17 | ||
| 18 | #ifdef RGB_MATRIX_ENABLE | 18 | #ifdef RGB_MATRIX_ENABLE |
| 19 | const is31_led g_is31_leds[RGB_MATRIX_LED_COUNT] = { | 19 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 20 | { 0, L_1, K_1, J_1 }, | 20 | { 0, L_1, K_1, J_1 }, |
| 21 | { 0, L_2, K_2, J_2 }, | 21 | { 0, L_2, K_2, J_2 }, |
| 22 | { 0, L_3, K_3, J_3 }, | 22 | { 0, L_3, K_3, J_3 }, |
diff --git a/keyboards/latincompass/latin17rgb/latin17rgb.c b/keyboards/latincompass/latin17rgb/latin17rgb.c index b75a11d965..54705bf4f7 100644 --- a/keyboards/latincompass/latin17rgb/latin17rgb.c +++ b/keyboards/latincompass/latin17rgb/latin17rgb.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | 17 | ||
| 18 | #ifdef RGB_MATRIX_ENABLE | 18 | #ifdef RGB_MATRIX_ENABLE |
| 19 | 19 | ||
| 20 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 21 | /* Refer to IS31 manual for these locations | 21 | /* Refer to IS31 manual for these locations |
| 22 | * driver | 22 | * driver |
| 23 | * | R location | 23 | * | R location |
diff --git a/keyboards/latincompass/latin60rgb/latin60rgb.c b/keyboards/latincompass/latin60rgb/latin60rgb.c index a915bede80..95ddc428da 100644 --- a/keyboards/latincompass/latin60rgb/latin60rgb.c +++ b/keyboards/latincompass/latin60rgb/latin60rgb.c | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | #include "quantum.h" | 16 | #include "quantum.h" |
| 17 | 17 | ||
| 18 | #ifdef RGB_MATRIX_ENABLE | 18 | #ifdef RGB_MATRIX_ENABLE |
| 19 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 19 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 20 | { 0, K_13, J_13, L_13 }, | 20 | { 0, K_13, J_13, L_13 }, |
| 21 | { 0, K_12, J_12, L_12 }, | 21 | { 0, K_12, J_12, L_12 }, |
| 22 | { 0, K_11, J_11, L_11 }, | 22 | { 0, K_11, J_11, L_11 }, |
diff --git a/keyboards/latincompass/latin6rgb/latin6rgb.c b/keyboards/latincompass/latin6rgb/latin6rgb.c index a1eb38b9af..779373ae8f 100644 --- a/keyboards/latincompass/latin6rgb/latin6rgb.c +++ b/keyboards/latincompass/latin6rgb/latin6rgb.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | 17 | ||
| 18 | #ifdef RGB_MATRIX_ENABLE | 18 | #ifdef RGB_MATRIX_ENABLE |
| 19 | 19 | ||
| 20 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 21 | /* Refer to IS31 manual for these locations | 21 | /* Refer to IS31 manual for these locations |
| 22 | * driver | 22 | * driver |
| 23 | * | R location | 23 | * | R location |
diff --git a/keyboards/matrix/noah/noah.c b/keyboards/matrix/noah/noah.c index d62177a2f4..b5c52f9952 100644 --- a/keyboards/matrix/noah/noah.c +++ b/keyboards/matrix/noah/noah.c | |||
| @@ -60,7 +60,7 @@ const rgblight_driver_t rgblight_driver = { | |||
| 60 | #endif | 60 | #endif |
| 61 | 61 | ||
| 62 | #ifdef RGB_MATRIX_ENABLE | 62 | #ifdef RGB_MATRIX_ENABLE |
| 63 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 63 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 64 | /* Refer to IS31 manual for these locations | 64 | /* Refer to IS31 manual for these locations |
| 65 | * driver | 65 | * driver |
| 66 | * | R location | 66 | * | R location |
diff --git a/keyboards/mechlovin/adelais/rgb_led/rev2/rev2.c b/keyboards/mechlovin/adelais/rgb_led/rev2/rev2.c index 9e5fe11895..d49d16e85a 100644 --- a/keyboards/mechlovin/adelais/rgb_led/rev2/rev2.c +++ b/keyboards/mechlovin/adelais/rgb_led/rev2/rev2.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 21 | 21 | ||
| 22 | {0, C2_1, C3_1, C4_1}, //D102-A0-0 | 22 | {0, C2_1, C3_1, C4_1}, //D102-A0-0 |
| 23 | {0, C5_1, C6_1, C7_1}, //D108-A1-1 | 23 | {0, C5_1, C6_1, C7_1}, //D108-A1-1 |
diff --git a/keyboards/mechlovin/adelais/rgb_led/rev3/rev3.c b/keyboards/mechlovin/adelais/rgb_led/rev3/rev3.c index b13f223a1c..5eebd7ec8a 100644 --- a/keyboards/mechlovin/adelais/rgb_led/rev3/rev3.c +++ b/keyboards/mechlovin/adelais/rgb_led/rev3/rev3.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 21 | {0, CS3_SW5, CS2_SW5, CS1_SW5}, /* D9-K31-00 */ | 21 | {0, CS3_SW5, CS2_SW5, CS1_SW5}, /* D9-K31-00 */ |
| 22 | {0, CS6_SW5, CS5_SW5, CS4_SW5}, /* D46-K00-01 */ | 22 | {0, CS6_SW5, CS5_SW5, CS4_SW5}, /* D46-K00-01 */ |
| 23 | {0, CS6_SW9, CS5_SW9, CS4_SW9}, /* D59-K01-02 */ | 23 | {0, CS6_SW9, CS5_SW9, CS4_SW9}, /* D59-K01-02 */ |
diff --git a/keyboards/mechlovin/delphine/rgb_led/rgb_led.c b/keyboards/mechlovin/delphine/rgb_led/rgb_led.c index a55143f2e1..feda05a071 100644 --- a/keyboards/mechlovin/delphine/rgb_led/rgb_led.c +++ b/keyboards/mechlovin/delphine/rgb_led/rgb_led.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | 19 | ||
| 20 | #ifdef RGB_MATRIX_ENABLE | 20 | #ifdef RGB_MATRIX_ENABLE |
| 21 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 22 | // left CA | 22 | // left CA |
| 23 | {0, C5_2, C6_2, C7_2}, //D2-0 | 23 | {0, C5_2, C6_2, C7_2}, //D2-0 |
| 24 | {0, C1_1, C3_2, C4_2}, //D20-1 | 24 | {0, C1_1, C3_2, C4_2}, //D20-1 |
diff --git a/keyboards/mechlovin/hannah60rgb/rev2/rev2.c b/keyboards/mechlovin/hannah60rgb/rev2/rev2.c index 2e3c8d0090..c6943cc357 100644 --- a/keyboards/mechlovin/hannah60rgb/rev2/rev2.c +++ b/keyboards/mechlovin/hannah60rgb/rev2/rev2.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 21 | /* Refer to IS31 manual for these locations | 21 | /* Refer to IS31 manual for these locations |
| 22 | * driver | 22 | * driver |
| 23 | * | R location | 23 | * | R location |
diff --git a/keyboards/mechlovin/infinity87/rgb_rev1/rgb_rev1.c b/keyboards/mechlovin/infinity87/rgb_rev1/rgb_rev1.c index 5649f80712..cd8f2e2ca0 100644 --- a/keyboards/mechlovin/infinity87/rgb_rev1/rgb_rev1.c +++ b/keyboards/mechlovin/infinity87/rgb_rev1/rgb_rev1.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 21 | {0, CS34_SW1, CS35_SW1, CS36_SW1}, //D92-K00-0 | 21 | {0, CS34_SW1, CS35_SW1, CS36_SW1}, //D92-K00-0 |
| 22 | {0, CS37_SW1, CS38_SW1, CS39_SW1}, //D94-K01-1 | 22 | {0, CS37_SW1, CS38_SW1, CS39_SW1}, //D94-K01-1 |
| 23 | {0, CS31_SW1, CS32_SW1, CS33_SW1}, //D96-K02-2 | 23 | {0, CS31_SW1, CS32_SW1, CS33_SW1}, //D96-K02-2 |
diff --git a/keyboards/mechlovin/olly/octagon/octagon.c b/keyboards/mechlovin/olly/octagon/octagon.c index b5eb828bc8..185ee32a3e 100644 --- a/keyboards/mechlovin/olly/octagon/octagon.c +++ b/keyboards/mechlovin/olly/octagon/octagon.c | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | 16 | ||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[LED_MATRIX_LED_COUNT] = { | 19 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 20 | /* Refer to IS31 manual for these locations | 20 | /* Refer to IS31 manual for these locations |
| 21 | * driver | 21 | * driver |
| 22 | * | LED address | 22 | * | LED address |
diff --git a/keyboards/mechlovin/zed65/mono_led/mono_led.c b/keyboards/mechlovin/zed65/mono_led/mono_led.c index f66c4b1359..d8570fa0a6 100644 --- a/keyboards/mechlovin/zed65/mono_led/mono_led.c +++ b/keyboards/mechlovin/zed65/mono_led/mono_led.c | |||
| @@ -19,7 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 19 | 19 | ||
| 20 | 20 | ||
| 21 | 21 | ||
| 22 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[LED_MATRIX_LED_COUNT] = { | 22 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 23 | /* Refer to IS31 manual for these locations | 23 | /* Refer to IS31 manual for these locations |
| 24 | * driver | 24 | * driver |
| 25 | * | LED address | 25 | * | LED address |
diff --git a/keyboards/melgeek/mach80/rev1/rev1.c b/keyboards/melgeek/mach80/rev1/rev1.c index 9e5c2d8b81..97744bd824 100755 --- a/keyboards/melgeek/mach80/rev1/rev1.c +++ b/keyboards/melgeek/mach80/rev1/rev1.c | |||
| @@ -19,7 +19,7 @@ | |||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | 21 | ||
| 22 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 22 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 23 | {0, CS9_SW1, CS8_SW1, CS7_SW1}, /* RGB1 */ | 23 | {0, CS9_SW1, CS8_SW1, CS7_SW1}, /* RGB1 */ |
| 24 | {0, CS9_SW2, CS8_SW2, CS7_SW2}, /* RGB2 */ | 24 | {0, CS9_SW2, CS8_SW2, CS7_SW2}, /* RGB2 */ |
| 25 | {0, CS9_SW3, CS8_SW3, CS7_SW3}, /* RGB3 */ | 25 | {0, CS9_SW3, CS8_SW3, CS7_SW3}, /* RGB3 */ |
diff --git a/keyboards/melgeek/mach80/rev2/rev2.c b/keyboards/melgeek/mach80/rev2/rev2.c index e9fdc2517f..5fcc84e947 100755 --- a/keyboards/melgeek/mach80/rev2/rev2.c +++ b/keyboards/melgeek/mach80/rev2/rev2.c | |||
| @@ -19,7 +19,7 @@ | |||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | 21 | ||
| 22 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 22 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 23 | {0, CS9_SW1, CS8_SW1, CS7_SW1}, /* RGB1 */ | 23 | {0, CS9_SW1, CS8_SW1, CS7_SW1}, /* RGB1 */ |
| 24 | {0, CS9_SW2, CS8_SW2, CS7_SW2}, /* RGB2 */ | 24 | {0, CS9_SW2, CS8_SW2, CS7_SW2}, /* RGB2 */ |
| 25 | {0, CS9_SW3, CS8_SW3, CS7_SW3}, /* RGB3 */ | 25 | {0, CS9_SW3, CS8_SW3, CS7_SW3}, /* RGB3 */ |
diff --git a/keyboards/melgeek/mj61/rev1/rev1.c b/keyboards/melgeek/mj61/rev1/rev1.c index 76fcb64c37..473ef5dc86 100644 --- a/keyboards/melgeek/mj61/rev1/rev1.c +++ b/keyboards/melgeek/mj61/rev1/rev1.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 21 | {0, CS12_SW1, CS11_SW1, CS10_SW1}, /* RGB1 */ | 21 | {0, CS12_SW1, CS11_SW1, CS10_SW1}, /* RGB1 */ |
| 22 | {0, CS12_SW2, CS11_SW2, CS10_SW2}, /* RGB2 */ | 22 | {0, CS12_SW2, CS11_SW2, CS10_SW2}, /* RGB2 */ |
| 23 | {0, CS12_SW3, CS11_SW3, CS10_SW3}, /* RGB3 */ | 23 | {0, CS12_SW3, CS11_SW3, CS10_SW3}, /* RGB3 */ |
diff --git a/keyboards/melgeek/mj61/rev2/rev2.c b/keyboards/melgeek/mj61/rev2/rev2.c index 9d13d52ebc..a699cf45c0 100644 --- a/keyboards/melgeek/mj61/rev2/rev2.c +++ b/keyboards/melgeek/mj61/rev2/rev2.c | |||
| @@ -19,7 +19,7 @@ | |||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | 21 | ||
| 22 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 22 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 23 | {0, CS9_SW1, CS8_SW1, CS7_SW1}, /* RGB1 */ | 23 | {0, CS9_SW1, CS8_SW1, CS7_SW1}, /* RGB1 */ |
| 24 | {0, CS9_SW2, CS8_SW2, CS7_SW2}, /* RGB3 */ | 24 | {0, CS9_SW2, CS8_SW2, CS7_SW2}, /* RGB3 */ |
| 25 | {0, CS9_SW3, CS8_SW3, CS7_SW3}, /* RGB4 */ | 25 | {0, CS9_SW3, CS8_SW3, CS7_SW3}, /* RGB4 */ |
diff --git a/keyboards/melgeek/mj63/rev1/rev1.c b/keyboards/melgeek/mj63/rev1/rev1.c index 69e7ab5da6..b286ec7ca6 100644 --- a/keyboards/melgeek/mj63/rev1/rev1.c +++ b/keyboards/melgeek/mj63/rev1/rev1.c | |||
| @@ -19,7 +19,7 @@ | |||
| 19 | 19 | ||
| 20 | #ifdef RGB_MATRIX_ENABLE | 20 | #ifdef RGB_MATRIX_ENABLE |
| 21 | 21 | ||
| 22 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 22 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 23 | {0, CS9_SW1, CS8_SW1, CS7_SW1}, /* RGB1 */ | 23 | {0, CS9_SW1, CS8_SW1, CS7_SW1}, /* RGB1 */ |
| 24 | {0, CS9_SW2, CS8_SW2, CS7_SW2}, /* RGB2 */ | 24 | {0, CS9_SW2, CS8_SW2, CS7_SW2}, /* RGB2 */ |
| 25 | {0, CS9_SW3, CS8_SW3, CS7_SW3}, /* RGB3 */ | 25 | {0, CS9_SW3, CS8_SW3, CS7_SW3}, /* RGB3 */ |
diff --git a/keyboards/melgeek/mj63/rev2/rev2.c b/keyboards/melgeek/mj63/rev2/rev2.c index 5ab9cdb65a..5a04475bae 100644 --- a/keyboards/melgeek/mj63/rev2/rev2.c +++ b/keyboards/melgeek/mj63/rev2/rev2.c | |||
| @@ -19,7 +19,7 @@ | |||
| 19 | 19 | ||
| 20 | #ifdef RGB_MATRIX_ENABLE | 20 | #ifdef RGB_MATRIX_ENABLE |
| 21 | 21 | ||
| 22 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 22 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 23 | {0, CS9_SW1, CS8_SW1, CS7_SW1}, /* RGB1 */ | 23 | {0, CS9_SW1, CS8_SW1, CS7_SW1}, /* RGB1 */ |
| 24 | {0, CS9_SW2, CS8_SW2, CS7_SW2}, /* RGB3 */ | 24 | {0, CS9_SW2, CS8_SW2, CS7_SW2}, /* RGB3 */ |
| 25 | {0, CS9_SW3, CS8_SW3, CS7_SW3}, /* RGB4 */ | 25 | {0, CS9_SW3, CS8_SW3, CS7_SW3}, /* RGB4 */ |
diff --git a/keyboards/melgeek/mj64/rev1/rev1.c b/keyboards/melgeek/mj64/rev1/rev1.c index fff946b20a..a608f83afe 100644 --- a/keyboards/melgeek/mj64/rev1/rev1.c +++ b/keyboards/melgeek/mj64/rev1/rev1.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 22 | {0, CS9_SW1, CS8_SW1, CS7_SW1}, /* RGB1 */ | 22 | {0, CS9_SW1, CS8_SW1, CS7_SW1}, /* RGB1 */ |
| 23 | {0, CS9_SW2, CS8_SW2, CS7_SW2}, /* RGB2 */ | 23 | {0, CS9_SW2, CS8_SW2, CS7_SW2}, /* RGB2 */ |
| 24 | {0, CS9_SW3, CS8_SW3, CS7_SW3}, /* RGB3 */ | 24 | {0, CS9_SW3, CS8_SW3, CS7_SW3}, /* RGB3 */ |
diff --git a/keyboards/melgeek/mj64/rev2/rev2.c b/keyboards/melgeek/mj64/rev2/rev2.c index 35da35b2e4..67c17855fd 100644 --- a/keyboards/melgeek/mj64/rev2/rev2.c +++ b/keyboards/melgeek/mj64/rev2/rev2.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 22 | {0, CS9_SW1, CS8_SW1, CS7_SW1}, /* RGB1 */ | 22 | {0, CS9_SW1, CS8_SW1, CS7_SW1}, /* RGB1 */ |
| 23 | {0, CS9_SW2, CS8_SW2, CS7_SW2}, /* RGB2 */ | 23 | {0, CS9_SW2, CS8_SW2, CS7_SW2}, /* RGB2 */ |
| 24 | {0, CS9_SW3, CS8_SW3, CS7_SW3}, /* RGB3 */ | 24 | {0, CS9_SW3, CS8_SW3, CS7_SW3}, /* RGB3 */ |
diff --git a/keyboards/melgeek/mj64/rev3/rev3.c b/keyboards/melgeek/mj64/rev3/rev3.c index 942bda1487..77f86bb015 100644 --- a/keyboards/melgeek/mj64/rev3/rev3.c +++ b/keyboards/melgeek/mj64/rev3/rev3.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 22 | {0, CS9_SW1, CS8_SW1, CS7_SW1}, /* RGB1 */ | 22 | {0, CS9_SW1, CS8_SW1, CS7_SW1}, /* RGB1 */ |
| 23 | {0, CS9_SW2, CS8_SW2, CS7_SW2}, /* RGB3 */ | 23 | {0, CS9_SW2, CS8_SW2, CS7_SW2}, /* RGB3 */ |
| 24 | {0, CS9_SW3, CS8_SW3, CS7_SW3}, /* RGB4 */ | 24 | {0, CS9_SW3, CS8_SW3, CS7_SW3}, /* RGB4 */ |
diff --git a/keyboards/melgeek/mj65/rev3/rev3.c b/keyboards/melgeek/mj65/rev3/rev3.c index 6d851aa847..1ebf87e099 100644 --- a/keyboards/melgeek/mj65/rev3/rev3.c +++ b/keyboards/melgeek/mj65/rev3/rev3.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 22 | {0, CS9_SW1, CS8_SW1, CS7_SW1}, /* RGB1 */ | 22 | {0, CS9_SW1, CS8_SW1, CS7_SW1}, /* RGB1 */ |
| 23 | {0, CS9_SW2, CS8_SW2, CS7_SW2}, /* RGB2 */ | 23 | {0, CS9_SW2, CS8_SW2, CS7_SW2}, /* RGB2 */ |
| 24 | {0, CS9_SW3, CS8_SW3, CS7_SW3}, /* RGB3 */ | 24 | {0, CS9_SW3, CS8_SW3, CS7_SW3}, /* RGB3 */ |
diff --git a/keyboards/melgeek/mojo68/rev1/rev1.c b/keyboards/melgeek/mojo68/rev1/rev1.c index cd6d4ec413..ea10051431 100755 --- a/keyboards/melgeek/mojo68/rev1/rev1.c +++ b/keyboards/melgeek/mojo68/rev1/rev1.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 22 | {0, CS9_SW1, CS8_SW1, CS7_SW1}, /* RGB1 */ | 22 | {0, CS9_SW1, CS8_SW1, CS7_SW1}, /* RGB1 */ |
| 23 | {0, CS9_SW2, CS8_SW2, CS7_SW2}, /* RGB2 */ | 23 | {0, CS9_SW2, CS8_SW2, CS7_SW2}, /* RGB2 */ |
| 24 | {0, CS9_SW3, CS8_SW3, CS7_SW3}, /* RGB3 */ | 24 | {0, CS9_SW3, CS8_SW3, CS7_SW3}, /* RGB3 */ |
diff --git a/keyboards/melgeek/mojo75/rev1/rev1.c b/keyboards/melgeek/mojo75/rev1/rev1.c index e64c163c78..f043108380 100644 --- a/keyboards/melgeek/mojo75/rev1/rev1.c +++ b/keyboards/melgeek/mojo75/rev1/rev1.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 22 | {0, CS6_SW1, CS5_SW1, CS4_SW1}, /* RGB1 */ | 22 | {0, CS6_SW1, CS5_SW1, CS4_SW1}, /* RGB1 */ |
| 23 | {0, CS6_SW2, CS5_SW2, CS4_SW2}, /* RGB2 */ | 23 | {0, CS6_SW2, CS5_SW2, CS4_SW2}, /* RGB2 */ |
| 24 | {0, CS6_SW3, CS5_SW3, CS4_SW3}, /* RGB3 */ | 24 | {0, CS6_SW3, CS5_SW3, CS4_SW3}, /* RGB3 */ |
diff --git a/keyboards/melgeek/tegic/rev1/rev1.c b/keyboards/melgeek/tegic/rev1/rev1.c index 6dc2e8d180..2b36ec7609 100755 --- a/keyboards/melgeek/tegic/rev1/rev1.c +++ b/keyboards/melgeek/tegic/rev1/rev1.c | |||
| @@ -19,7 +19,7 @@ | |||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | 21 | ||
| 22 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 22 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 23 | {0, CS9_SW1, CS8_SW1, CS7_SW1}, /* RGB1 */ | 23 | {0, CS9_SW1, CS8_SW1, CS7_SW1}, /* RGB1 */ |
| 24 | {0, CS9_SW2, CS8_SW2, CS7_SW2}, /* RGB2 */ | 24 | {0, CS9_SW2, CS8_SW2, CS7_SW2}, /* RGB2 */ |
| 25 | {0, CS9_SW3, CS8_SW3, CS7_SW3}, /* RGB3 */ | 25 | {0, CS9_SW3, CS8_SW3, CS7_SW3}, /* RGB3 */ |
diff --git a/keyboards/melgeek/z70ultra/z70ultra.c b/keyboards/melgeek/z70ultra/z70ultra.c index f978edea92..eaf03fd344 100644 --- a/keyboards/melgeek/z70ultra/z70ultra.c +++ b/keyboards/melgeek/z70ultra/z70ultra.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | 19 | ||
| 20 | #ifdef RGB_MATRIX_ENABLE | 20 | #ifdef RGB_MATRIX_ENABLE |
| 21 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 22 | {0, CS28_SW1, CS30_SW1, CS29_SW1}, /* RGB10 */ | 22 | {0, CS28_SW1, CS30_SW1, CS29_SW1}, /* RGB10 */ |
| 23 | {0, CS28_SW2, CS30_SW2, CS29_SW2}, /* RGB11 */ | 23 | {0, CS28_SW2, CS30_SW2, CS29_SW2}, /* RGB11 */ |
| 24 | {0, CS28_SW3, CS30_SW3, CS29_SW3}, /* RGB12 */ | 24 | {0, CS28_SW3, CS30_SW3, CS29_SW3}, /* RGB12 */ |
diff --git a/keyboards/miller/gm862/gm862.c b/keyboards/miller/gm862/gm862.c index b677ae3be4..3dcbe122fb 100644 --- a/keyboards/miller/gm862/gm862.c +++ b/keyboards/miller/gm862/gm862.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | #include "quantum.h" | 1 | #include "quantum.h" |
| 2 | 2 | ||
| 3 | #ifdef RGB_MATRIX_ENABLE | 3 | #ifdef RGB_MATRIX_ENABLE |
| 4 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 4 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 5 | {0, B_1, A_1, C_1}, | 5 | {0, B_1, A_1, C_1}, |
| 6 | {0, B_2, A_2, C_2}, | 6 | {0, B_2, A_2, C_2}, |
| 7 | {0, B_3, A_3, C_3}, | 7 | {0, B_3, A_3, C_3}, |
diff --git a/keyboards/monsgeek/m1/m1.c b/keyboards/monsgeek/m1/m1.c index b85adbc0bf..a0375b2c0f 100644 --- a/keyboards/monsgeek/m1/m1.c +++ b/keyboards/monsgeek/m1/m1.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 21 | /* Refer to SNLED27351 manual for these locations | 21 | /* Refer to SNLED27351 manual for these locations |
| 22 | * driver | 22 | * driver |
| 23 | * | R location | 23 | * | R location |
diff --git a/keyboards/monsgeek/m3/m3.c b/keyboards/monsgeek/m3/m3.c index b7e197e6ac..2bdba9fa31 100644 --- a/keyboards/monsgeek/m3/m3.c +++ b/keyboards/monsgeek/m3/m3.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | // clang-format off | 18 | // clang-format off |
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 21 | /* Refer to IS31 manual for these locations | 21 | /* Refer to IS31 manual for these locations |
| 22 | * driver | 22 | * driver |
| 23 | * | R location | 23 | * | R location |
diff --git a/keyboards/monsgeek/m5/m5.c b/keyboards/monsgeek/m5/m5.c index 83dd4b6b79..2e244542ef 100644 --- a/keyboards/monsgeek/m5/m5.c +++ b/keyboards/monsgeek/m5/m5.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | // clang-format off | 18 | // clang-format off |
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 21 | /* Refer to SNLED27351 manual for these locations | 21 | /* Refer to SNLED27351 manual for these locations |
| 22 | * driver | 22 | * driver |
| 23 | * | R location | 23 | * | R location |
diff --git a/keyboards/monsgeek/m6/m6.c b/keyboards/monsgeek/m6/m6.c index dc20a9916f..3d0a60eb0d 100644 --- a/keyboards/monsgeek/m6/m6.c +++ b/keyboards/monsgeek/m6/m6.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | // clang-format off | 18 | // clang-format off |
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 21 | /* Refer to SNLED27351 manual for these locations | 21 | /* Refer to SNLED27351 manual for these locations |
| 22 | * driver | 22 | * driver |
| 23 | * | R location | 23 | * | R location |
diff --git a/keyboards/moonlander/moonlander.c b/keyboards/moonlander/moonlander.c index 5b52ba7031..dad795d315 100644 --- a/keyboards/moonlander/moonlander.c +++ b/keyboards/moonlander/moonlander.c | |||
| @@ -172,7 +172,7 @@ layer_state_t layer_state_set_kb(layer_state_t state) { | |||
| 172 | 172 | ||
| 173 | #ifdef RGB_MATRIX_ENABLE | 173 | #ifdef RGB_MATRIX_ENABLE |
| 174 | // clang-format off | 174 | // clang-format off |
| 175 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 175 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 176 | /* Refer to IS31 manual for these locations | 176 | /* Refer to IS31 manual for these locations |
| 177 | * driver | 177 | * driver |
| 178 | * | R location | 178 | * | R location |
diff --git a/keyboards/mt/mt64rgb/mt64rgb.c b/keyboards/mt/mt64rgb/mt64rgb.c index 7a6831f6d0..42e6a48dc2 100644 --- a/keyboards/mt/mt64rgb/mt64rgb.c +++ b/keyboards/mt/mt64rgb/mt64rgb.c | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | #include "quantum.h" | 16 | #include "quantum.h" |
| 17 | 17 | ||
| 18 | #ifdef RGB_MATRIX_ENABLE | 18 | #ifdef RGB_MATRIX_ENABLE |
| 19 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 19 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 20 | /* Refer to IS31 manual for these locations | 20 | /* Refer to IS31 manual for these locations |
| 21 | * driver | 21 | * driver |
| 22 | * | R location | 22 | * | R location |
diff --git a/keyboards/mt/mt84/mt84.c b/keyboards/mt/mt84/mt84.c index fd4811e63a..4dd24c30b2 100644 --- a/keyboards/mt/mt84/mt84.c +++ b/keyboards/mt/mt84/mt84.c | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | #include "quantum.h" | 16 | #include "quantum.h" |
| 17 | 17 | ||
| 18 | #ifdef RGB_MATRIX_ENABLE | 18 | #ifdef RGB_MATRIX_ENABLE |
| 19 | const is31fl3737_led_t PROGMEM g_is31fl3737_leds[RGB_MATRIX_LED_COUNT] = { | 19 | const is31fl3737_led_t PROGMEM g_is31fl3737_leds[IS31FL3737_LED_COUNT] = { |
| 20 | /* Refer to IS31 manual for these locations | 20 | /* Refer to IS31 manual for these locations |
| 21 | * driver | 21 | * driver |
| 22 | * | R location | 22 | * | R location |
diff --git a/keyboards/opendeck/32/rev1/rev1.c b/keyboards/opendeck/32/rev1/rev1.c index 0b062ecd38..da9e6569f2 100644 --- a/keyboards/opendeck/32/rev1/rev1.c +++ b/keyboards/opendeck/32/rev1/rev1.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "rev1.h" | 17 | #include "rev1.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 21 | /* Refer to IS31 manual for these locations | 21 | /* Refer to IS31 manual for these locations |
| 22 | * driver | 22 | * driver |
| 23 | * | R location | 23 | * | R location |
diff --git a/keyboards/owlab/voice65/hotswap/hotswap.c b/keyboards/owlab/voice65/hotswap/hotswap.c index b4c0c02c32..107952d370 100644 --- a/keyboards/owlab/voice65/hotswap/hotswap.c +++ b/keyboards/owlab/voice65/hotswap/hotswap.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const is31fl3741_led_t g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 21 | {0, CS3_SW1, CS2_SW1, CS1_SW1}, /* RGB0-ESC ROW0*/ | 21 | {0, CS3_SW1, CS2_SW1, CS1_SW1}, /* RGB0-ESC ROW0*/ |
| 22 | {0, CS6_SW1, CS5_SW1, CS4_SW1}, /* RGB1-1 */ | 22 | {0, CS6_SW1, CS5_SW1, CS4_SW1}, /* RGB1-1 */ |
| 23 | {0, CS9_SW1, CS8_SW1, CS7_SW1}, /* RGB2-2 */ | 23 | {0, CS9_SW1, CS8_SW1, CS7_SW1}, /* RGB2-2 */ |
diff --git a/keyboards/owlab/voice65/soldered/soldered.c b/keyboards/owlab/voice65/soldered/soldered.c index 301a5adc59..eb3b68515a 100644 --- a/keyboards/owlab/voice65/soldered/soldered.c +++ b/keyboards/owlab/voice65/soldered/soldered.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const is31fl3741_led_t g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 21 | {0, CS3_SW1, CS2_SW1, CS1_SW1}, /* RGB0-ESC ROW0*/ | 21 | {0, CS3_SW1, CS2_SW1, CS1_SW1}, /* RGB0-ESC ROW0*/ |
| 22 | {0, CS6_SW1, CS5_SW1, CS4_SW1}, /* RGB1-1 */ | 22 | {0, CS6_SW1, CS5_SW1, CS4_SW1}, /* RGB1-1 */ |
| 23 | {0, CS9_SW1, CS8_SW1, CS7_SW1}, /* RGB2-2 */ | 23 | {0, CS9_SW1, CS8_SW1, CS7_SW1}, /* RGB2-2 */ |
diff --git a/keyboards/phentech/rpk_001/rpk_001.c b/keyboards/phentech/rpk_001/rpk_001.c index 9f1a118759..b24c0c6c0e 100644 --- a/keyboards/phentech/rpk_001/rpk_001.c +++ b/keyboards/phentech/rpk_001/rpk_001.c | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | 7 | ||
| 8 | // clang-format off | 8 | // clang-format off |
| 9 | 9 | ||
| 10 | const aw_led g_aw_leds[RGB_MATRIX_LED_COUNT] = { | 10 | const aw20216s_led_t PROGMEM g_aw20216s_leds[AW20216S_LED_COUNT] = { |
| 11 | /* Refer to IS31 manual for these locations | 11 | /* Refer to IS31 manual for these locations |
| 12 | * driver | 12 | * driver |
| 13 | * | R location | 13 | * | R location |
diff --git a/keyboards/planck/ez/ez.c b/keyboards/planck/ez/ez.c index dfadb820ae..532558a294 100644 --- a/keyboards/planck/ez/ez.c +++ b/keyboards/planck/ez/ez.c | |||
| @@ -21,7 +21,7 @@ | |||
| 21 | 21 | ||
| 22 | keyboard_config_t keyboard_config; | 22 | keyboard_config_t keyboard_config; |
| 23 | #ifdef RGB_MATRIX_ENABLE | 23 | #ifdef RGB_MATRIX_ENABLE |
| 24 | const is31fl3737_led_t PROGMEM g_is31fl3737_leds[RGB_MATRIX_LED_COUNT] = { | 24 | const is31fl3737_led_t PROGMEM g_is31fl3737_leds[IS31FL3737_LED_COUNT] = { |
| 25 | /* Refer to IS31 manual for these locations | 25 | /* Refer to IS31 manual for these locations |
| 26 | * driver | 26 | * driver |
| 27 | * | R location | 27 | * | R location |
diff --git a/keyboards/planck/light/light.c b/keyboards/planck/light/light.c index 828319c66d..44bd89dc11 100644 --- a/keyboards/planck/light/light.c +++ b/keyboards/planck/light/light.c | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | 16 | ||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 19 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 20 | /* Refer to IS31 manual for these locations | 20 | /* Refer to IS31 manual for these locations |
| 21 | * driver | 21 | * driver |
| 22 | * | R location | 22 | * | R location |
diff --git a/keyboards/playkbtw/pk64rgb/pk64rgb.c b/keyboards/playkbtw/pk64rgb/pk64rgb.c index 427d1cf04e..17b8c74b18 100644 --- a/keyboards/playkbtw/pk64rgb/pk64rgb.c +++ b/keyboards/playkbtw/pk64rgb/pk64rgb.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 21 | /* Refer to IS31 manual for these locations | 21 | /* Refer to IS31 manual for these locations |
| 22 | * driver | 22 | * driver |
| 23 | * | R location | 23 | * | R location |
diff --git a/keyboards/projectd/65/projectd_65_ansi/projectd_65_ansi.c b/keyboards/projectd/65/projectd_65_ansi/projectd_65_ansi.c index 0d6123ac01..c5b513447b 100644 --- a/keyboards/projectd/65/projectd_65_ansi/projectd_65_ansi.c +++ b/keyboards/projectd/65/projectd_65_ansi/projectd_65_ansi.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const aw20216s_led_t g_aw20216s_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const aw20216s_led_t PROGMEM g_aw20216s_leds[AW20216S_LED_COUNT] = { |
| 22 | /* Refer to AW20216S manual for these locations | 22 | /* Refer to AW20216S manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/projectd/75/ansi/ansi.c b/keyboards/projectd/75/ansi/ansi.c index 1df7625002..7dd38569da 100644 --- a/keyboards/projectd/75/ansi/ansi.c +++ b/keyboards/projectd/75/ansi/ansi.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | 20 | ||
| 21 | const aw_led g_aw_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const aw20216s_led_t PROGMEM g_aw20216s_leds[AW20216S_LED_COUNT] = { |
| 22 | /* Refer to IS31 manual for these locations | 22 | /* Refer to IS31 manual for these locations |
| 23 | * driver | 23 | * driver |
| 24 | * | R location | 24 | * | R location |
diff --git a/keyboards/qwertykeys/qk100/ansi/ansi.c b/keyboards/qwertykeys/qk100/ansi/ansi.c index 87e1b99e1b..06f7c11fb2 100644 --- a/keyboards/qwertykeys/qk100/ansi/ansi.c +++ b/keyboards/qwertykeys/qk100/ansi/ansi.c | |||
| @@ -17,7 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const is31_led g_is31_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 21 | {0, CS2_SW1, CS3_SW1, CS1_SW1}, /* RGB0-ESC ROW0*/ | 21 | {0, CS2_SW1, CS3_SW1, CS1_SW1}, /* RGB0-ESC ROW0*/ |
| 22 | {0, CS5_SW1, CS6_SW1, CS4_SW1}, /* RGB1-F1 */ | 22 | {0, CS5_SW1, CS6_SW1, CS4_SW1}, /* RGB1-F1 */ |
| 23 | {0, CS8_SW1, CS9_SW1, CS7_SW1}, /* RGB2-F2 */ | 23 | {0, CS8_SW1, CS9_SW1, CS7_SW1}, /* RGB2-F2 */ |
diff --git a/keyboards/redragon/k667/k667.c b/keyboards/redragon/k667/k667.c index 629e120b7b..a1930f3b85 100644 --- a/keyboards/redragon/k667/k667.c +++ b/keyboards/redragon/k667/k667.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 21 | {0, G_1, I_1, H_1}, | 21 | {0, G_1, I_1, H_1}, |
| 22 | {0, G_3, I_3, H_3}, | 22 | {0, G_3, I_3, H_3}, |
| 23 | {0, G_4, I_4, H_4}, | 23 | {0, G_4, I_4, H_4}, |
diff --git a/keyboards/skyloong/gk61/v1/v1.c b/keyboards/skyloong/gk61/v1/v1.c index cb3772f6b4..1ee3522b50 100644 --- a/keyboards/skyloong/gk61/v1/v1.c +++ b/keyboards/skyloong/gk61/v1/v1.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | 17 | ||
| 18 | #ifdef RGB_MATRIX_ENABLE | 18 | #ifdef RGB_MATRIX_ENABLE |
| 19 | 19 | ||
| 20 | const snled27351_led_t PROGMEM g_snled27351_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = { |
| 21 | /* Refer to SNLED27351 manual for these locations | 21 | /* Refer to SNLED27351 manual for these locations |
| 22 | * driver | 22 | * driver |
| 23 | * | R location | 23 | * | R location |
diff --git a/keyboards/smallkeyboard/smallkeyboard.c b/keyboards/smallkeyboard/smallkeyboard.c index ce79c7df5d..7442444b00 100644 --- a/keyboards/smallkeyboard/smallkeyboard.c +++ b/keyboards/smallkeyboard/smallkeyboard.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | 17 | ||
| 18 | #ifdef RGB_MATRIX_ENABLE | 18 | #ifdef RGB_MATRIX_ENABLE |
| 19 | 19 | ||
| 20 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 21 | /* Refer to IS31 manual for these locations | 21 | /* Refer to IS31 manual for these locations |
| 22 | * driver | 22 | * driver |
| 23 | * | R location | 23 | * | R location |
diff --git a/keyboards/teleport/native/native.c b/keyboards/teleport/native/native.c index ab6d588de7..b11b63f1f6 100644 --- a/keyboards/teleport/native/native.c +++ b/keyboards/teleport/native/native.c | |||
| @@ -25,7 +25,7 @@ void keyboard_post_init_kb(void) { | |||
| 25 | } | 25 | } |
| 26 | 26 | ||
| 27 | #ifdef RGB_MATRIX_ENABLE | 27 | #ifdef RGB_MATRIX_ENABLE |
| 28 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[RGB_MATRIX_LED_COUNT] = { | 28 | const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT] = { |
| 29 | /* Refer to IS31 manual for these locations | 29 | /* Refer to IS31 manual for these locations |
| 30 | * driver | 30 | * driver |
| 31 | * | R location | 31 | * | R location |
diff --git a/keyboards/terrazzo/terrazzo.c b/keyboards/terrazzo/terrazzo.c index 7717b36e65..53b0bd4c51 100644 --- a/keyboards/terrazzo/terrazzo.c +++ b/keyboards/terrazzo/terrazzo.c | |||
| @@ -21,7 +21,7 @@ | |||
| 21 | #include "print.h" | 21 | #include "print.h" |
| 22 | #include "quantum.h" | 22 | #include "quantum.h" |
| 23 | 23 | ||
| 24 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[LED_MATRIX_LED_COUNT] = { | 24 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 25 | /* Refer to IS31 manual for these locations | 25 | /* Refer to IS31 manual for these locations |
| 26 | * https://cdn-learn.adafruit.com/downloads/pdf/adafruit-15x7-7x15-charlieplex-led-matrix-charliewing-featherwing.pdf | 26 | * https://cdn-learn.adafruit.com/downloads/pdf/adafruit-15x7-7x15-charlieplex-led-matrix-charliewing-featherwing.pdf |
| 27 | */ | 27 | */ |
diff --git a/keyboards/tkc/portico68v2/portico68v2.c b/keyboards/tkc/portico68v2/portico68v2.c index 90d8c12fca..561b4f8d10 100644 --- a/keyboards/tkc/portico68v2/portico68v2.c +++ b/keyboards/tkc/portico68v2/portico68v2.c | |||
| @@ -18,7 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 18 | #include "quantum.h" | 18 | #include "quantum.h" |
| 19 | 19 | ||
| 20 | #ifdef RGB_MATRIX_ENABLE | 20 | #ifdef RGB_MATRIX_ENABLE |
| 21 | const is31fl3741_led_t g_is31fl3741_leds[RGB_MATRIX_LED_COUNT] = { | 21 | const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT] = { |
| 22 | {0, CS18_SW1, CS17_SW1, CS16_SW1}, /* RGB1 */ | 22 | {0, CS18_SW1, CS17_SW1, CS16_SW1}, /* RGB1 */ |
| 23 | {0, CS18_SW2, CS17_SW2, CS16_SW2}, /* RGB2 */ | 23 | {0, CS18_SW2, CS17_SW2, CS16_SW2}, /* RGB2 */ |
| 24 | {0, CS18_SW3, CS17_SW3, CS16_SW3}, /* RGB3 */ | 24 | {0, CS18_SW3, CS17_SW3, CS16_SW3}, /* RGB3 */ |
diff --git a/keyboards/xbows/knight/knight.c b/keyboards/xbows/knight/knight.c index 05ff84060c..87a297a5ed 100644 --- a/keyboards/xbows/knight/knight.c +++ b/keyboards/xbows/knight/knight.c | |||
| @@ -15,7 +15,7 @@ | |||
| 15 | */ | 15 | */ |
| 16 | #include "quantum.h" | 16 | #include "quantum.h" |
| 17 | #ifdef RGB_MATRIX_ENABLE | 17 | #ifdef RGB_MATRIX_ENABLE |
| 18 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 18 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 19 | 19 | ||
| 20 | {0, C1_3, C2_3, C3_3}, // L01 | 20 | {0, C1_3, C2_3, C3_3}, // L01 |
| 21 | {0, C1_4, C2_4, C3_4}, // L02 | 21 | {0, C1_4, C2_4, C3_4}, // L02 |
diff --git a/keyboards/xbows/knight_plus/knight_plus.c b/keyboards/xbows/knight_plus/knight_plus.c index b84f6b964b..a5335337f1 100644 --- a/keyboards/xbows/knight_plus/knight_plus.c +++ b/keyboards/xbows/knight_plus/knight_plus.c | |||
| @@ -15,7 +15,7 @@ | |||
| 15 | */ | 15 | */ |
| 16 | #include "quantum.h" | 16 | #include "quantum.h" |
| 17 | #ifdef RGB_MATRIX_ENABLE | 17 | #ifdef RGB_MATRIX_ENABLE |
| 18 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 18 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 19 | 19 | ||
| 20 | {0, C1_3, C2_3, C3_3}, // L01 | 20 | {0, C1_3, C2_3, C3_3}, // L01 |
| 21 | {0, C1_4, C2_4, C3_4}, // L02 | 21 | {0, C1_4, C2_4, C3_4}, // L02 |
diff --git a/keyboards/xbows/nature/nature.c b/keyboards/xbows/nature/nature.c index 1ba964e453..9fcd40c08c 100644 --- a/keyboards/xbows/nature/nature.c +++ b/keyboards/xbows/nature/nature.c | |||
| @@ -15,7 +15,7 @@ | |||
| 15 | */ | 15 | */ |
| 16 | #include "quantum.h" | 16 | #include "quantum.h" |
| 17 | #ifdef RGB_MATRIX_ENABLE | 17 | #ifdef RGB_MATRIX_ENABLE |
| 18 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 18 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 19 | 19 | ||
| 20 | {0, C1_3, C2_3, C3_3}, // L01 | 20 | {0, C1_3, C2_3, C3_3}, // L01 |
| 21 | {0, C1_4, C2_4, C3_4}, // L02 | 21 | {0, C1_4, C2_4, C3_4}, // L02 |
diff --git a/keyboards/xbows/numpad/numpad.c b/keyboards/xbows/numpad/numpad.c index 519a1b36f4..b84f59fbed 100644 --- a/keyboards/xbows/numpad/numpad.c +++ b/keyboards/xbows/numpad/numpad.c | |||
| @@ -15,7 +15,7 @@ | |||
| 15 | */ | 15 | */ |
| 16 | #include "quantum.h" | 16 | #include "quantum.h" |
| 17 | #ifdef RGB_MATRIX_ENABLE | 17 | #ifdef RGB_MATRIX_ENABLE |
| 18 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 18 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 19 | 19 | ||
| 20 | {0, C3_3, C2_3, C1_3}, // L01 | 20 | {0, C3_3, C2_3, C1_3}, // L01 |
| 21 | {0, C3_4, C2_4, C1_4}, // L02 | 21 | {0, C3_4, C2_4, C1_4}, // L02 |
diff --git a/keyboards/xbows/ranger/ranger.c b/keyboards/xbows/ranger/ranger.c index 028b5fca5c..1ebb9a127c 100644 --- a/keyboards/xbows/ranger/ranger.c +++ b/keyboards/xbows/ranger/ranger.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "quantum.h" | 17 | #include "quantum.h" |
| 18 | 18 | ||
| 19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
| 20 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 20 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 21 | 21 | ||
| 22 | {0, C3_3, C2_3, C1_3}, // L01 | 22 | {0, C3_3, C2_3, C1_3}, // L01 |
| 23 | {0, C3_4, C2_4, C1_4}, // L02 | 23 | {0, C3_4, C2_4, C1_4}, // L02 |
diff --git a/keyboards/xbows/woody/woody.c b/keyboards/xbows/woody/woody.c index e58ec15e10..9bfa1fd219 100644 --- a/keyboards/xbows/woody/woody.c +++ b/keyboards/xbows/woody/woody.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | #include "quantum.h" | 1 | #include "quantum.h" |
| 2 | #ifdef RGB_MATRIX_ENABLE | 2 | #ifdef RGB_MATRIX_ENABLE |
| 3 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[RGB_MATRIX_LED_COUNT] = { | 3 | const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = { |
| 4 | 4 | ||
| 5 | {0, C8_8, C7_8, C6_8}, // LA17 | 5 | {0, C8_8, C7_8, C6_8}, // LA17 |
| 6 | {0, C9_8, C7_7, C6_7}, // LA16 | 6 | {0, C9_8, C7_7, C6_7}, // LA16 |
diff --git a/quantum/rgb_matrix/rgb_matrix_drivers.c b/quantum/rgb_matrix/rgb_matrix_drivers.c index e7bed0bf72..ef12434aa2 100644 --- a/quantum/rgb_matrix/rgb_matrix_drivers.c +++ b/quantum/rgb_matrix/rgb_matrix_drivers.c | |||
| @@ -107,7 +107,7 @@ const rgb_matrix_driver_t rgb_matrix_driver = { | |||
| 107 | # endif | 107 | # endif |
| 108 | 108 | ||
| 109 | // LED color buffer | 109 | // LED color buffer |
| 110 | rgb_led_t rgb_matrix_ws2812_array[RGB_MATRIX_LED_COUNT]; | 110 | rgb_led_t rgb_matrix_ws2812_array[WS2812_LED_COUNT]; |
| 111 | bool ws2812_dirty = false; | 111 | bool ws2812_dirty = false; |
| 112 | 112 | ||
| 113 | static void init(void) { | 113 | static void init(void) { |
| @@ -116,7 +116,7 @@ static void init(void) { | |||
| 116 | 116 | ||
| 117 | static void flush(void) { | 117 | static void flush(void) { |
| 118 | if (ws2812_dirty) { | 118 | if (ws2812_dirty) { |
| 119 | ws2812_setleds(rgb_matrix_ws2812_array, RGB_MATRIX_LED_COUNT); | 119 | ws2812_setleds(rgb_matrix_ws2812_array, WS2812_LED_COUNT); |
| 120 | ws2812_dirty = false; | 120 | ws2812_dirty = false; |
| 121 | } | 121 | } |
| 122 | } | 122 | } |
