1
0
Fork 0

Remove useless line continuations (#19399)

This commit is contained in:
Ryan 2022-12-30 11:48:05 +11:00 committed by GitHub
parent 2b61cc739f
commit 801d2ff940
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
481 changed files with 8637 additions and 8723 deletions

View file

@ -19,18 +19,18 @@
#ifdef RGB_MATRIX_ENABLE
led_config_t g_led_config = { {
// Key Matrix to LED Index, LED 61 omitted on ANSI
{ 0, 2, 4, 6, 8, 10, 12, 14 }, \
{ 1, 3, 5, 7, 9, 11, 13, 15 }, \
{ 16, 18, 20, 22, 24, 26, 28, NO_LED }, \
{ 17, 19, 21, 23, 25, 27, 29, 30 }, \
{ 31, 32, 34, 36, 38, 40, 42, 44 }, \
{ NO_LED, 33, 35, 37, 39, 41, 43, 45 }, \
{ 46, 48, 50, 52, 54, 56, NO_LED, 58 }, \
{ 47, 49, 51, 53, 55, 57, NO_LED, 59 }, \
{ 60, 62, 64, 66, 68, 70, NO_LED, 73 }, \
{ NO_LED, 63, 65, 67, 69, 71, 72, 74 }, \
{ 75, 78, NO_LED, NO_LED, NO_LED, 79, 81, 83 }, \
{ 76, 77, NO_LED, NO_LED, NO_LED, 80, 82, 84 } \
{ 0, 2, 4, 6, 8, 10, 12, 14 },
{ 1, 3, 5, 7, 9, 11, 13, 15 },
{ 16, 18, 20, 22, 24, 26, 28, NO_LED },
{ 17, 19, 21, 23, 25, 27, 29, 30 },
{ 31, 32, 34, 36, 38, 40, 42, 44 },
{ NO_LED, 33, 35, 37, 39, 41, 43, 45 },
{ 46, 48, 50, 52, 54, 56, NO_LED, 58 },
{ 47, 49, 51, 53, 55, 57, NO_LED, 59 },
{ 60, 62, 64, 66, 68, 70, NO_LED, 73 },
{ NO_LED, 63, 65, 67, 69, 71, 72, 74 },
{ 75, 78, NO_LED, NO_LED, NO_LED, 79, 81, 83 },
{ 76, 77, NO_LED, NO_LED, NO_LED, 80, 82, 84 }
}, {
// LED Index to Physical Position, the LED at { 0,0 } in row 5 is there to catch a non-existing LED on ANSI
{ 0,0 }, { 15,0 }, { 30,0 }, { 45,0 }, { 60,0 }, { 75,0 }, { 90,0 }, {105,0 }, {119,0 }, {134,0 }, {149,0 }, {164,0 }, {179,0 }, {194,0 }, {209,0 }, {224,0 },

View file

@ -19,18 +19,18 @@
#ifdef RGB_MATRIX_ENABLE
led_config_t g_led_config = { {
// Key Matrix to LED Index
{ 0, 2, 4, 6, 8, 10, 12, 14 }, \
{ 1, 3, 5, 7, 9, 11, 13, 15 }, \
{ 16, 18, 20, 22, 24, 26, 28, NO_LED }, \
{ 17, 19, 21, 23, 25, 27, 29, 30 }, \
{ 31, 32, 34, 36, 38, 40, 42, 44 }, \
{ NO_LED, 33, 35, 37, 39, 41, 43, 45 }, \
{ 46, 48, 50, 52, 54, 56, NO_LED, 58 }, \
{ 47, 49, 51, 53, 55, 57, NO_LED, 59 }, \
{ 60, 62, 64, 66, 68, 70, NO_LED, 73 }, \
{ 61, 63, 65, 67, 69, 71, 72, 74 }, \
{ 75, 78, NO_LED, NO_LED, NO_LED, 79, 81, 83 }, \
{ 76, 77, NO_LED, NO_LED, NO_LED, 80, 82, 84 } \
{ 0, 2, 4, 6, 8, 10, 12, 14 },
{ 1, 3, 5, 7, 9, 11, 13, 15 },
{ 16, 18, 20, 22, 24, 26, 28, NO_LED },
{ 17, 19, 21, 23, 25, 27, 29, 30 },
{ 31, 32, 34, 36, 38, 40, 42, 44 },
{ NO_LED, 33, 35, 37, 39, 41, 43, 45 },
{ 46, 48, 50, 52, 54, 56, NO_LED, 58 },
{ 47, 49, 51, 53, 55, 57, NO_LED, 59 },
{ 60, 62, 64, 66, 68, 70, NO_LED, 73 },
{ 61, 63, 65, 67, 69, 71, 72, 74 },
{ 75, 78, NO_LED, NO_LED, NO_LED, 79, 81, 83 },
{ 76, 77, NO_LED, NO_LED, NO_LED, 80, 82, 84 }
}, {
// LED Index to Physical Position
{ 0,0 }, { 15,0 }, { 30,0 }, { 45,0 }, { 60,0 }, { 75,0 }, { 90,0 }, {105,0 }, {119,0 }, {134,0 }, {149,0 }, {164,0 }, {179,0 }, {194,0 }, {209,0 }, {224,0 },