diff options
author | XScorpion2 <rcalt2vt@gmail.com> | 2019-04-30 09:55:53 -0500 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-05-01 08:57:17 -0700 |
commit | 882b8df7afcbcb38e57e2d4b7c47ca86203127dc (patch) | |
tree | cf644b45d5659c2220ef3ef9866f3f358136fe2d /quantum | |
parent | 59d28fe2884c0639ef020ece3e1bc6967ab0881f (diff) |
Implement kb function for rgb matrix to led lookup (#5738)
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/rgb_matrix.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/quantum/rgb_matrix.c b/quantum/rgb_matrix.c index 1d27a620a2..3c83463146 100644 --- a/quantum/rgb_matrix.c +++ b/quantum/rgb_matrix.c @@ -144,9 +144,14 @@ void eeconfig_debug_rgb_matrix(void) { dprintf("rgb_matrix_config.speed = %d\n", rgb_matrix_config.speed); } +__attribute__ ((weak)) +uint8_t rgb_matrix_map_row_column_to_led_kb(uint8_t row, uint8_t column, uint8_t *led_i) { + return 0; +} + uint8_t rgb_matrix_map_row_column_to_led(uint8_t row, uint8_t column, uint8_t *led_i) { // TODO: This is kinda expensive, fix this soonish - uint8_t led_count = 0; + uint8_t led_count = rgb_matrix_map_row_column_to_led_kb(row, column, led_i); for (uint8_t i = 0; i < DRIVER_LED_TOTAL && led_count < LED_HITS_TO_REMEMBER; i++) { matrix_co_t matrix_co = g_rgb_leds[i].matrix_co; if (row == matrix_co.row && column == matrix_co.col) { |