RGB Matrix: Reload from EEPROM (#15923)

Co-authored-by: Sergey Vlasov <sigprof@gmail.com>
This commit is contained in:
Adam Lickel 2022-02-04 19:08:48 -08:00 committed by GitHub
parent 119cadbaae
commit eb8ace0855
Failed to generate hash of commit
3 changed files with 14 additions and 0 deletions

View file

@ -164,6 +164,16 @@ void eeconfig_debug_rgb_matrix(void) {
dprintf("rgb_matrix_config.flags = %d\n", rgb_matrix_config.flags);
}
void rgb_matrix_reload_from_eeprom(void) {
rgb_matrix_disable_noeeprom();
/* Reset back to what we have in eeprom */
eeconfig_init_rgb_matrix();
eeconfig_debug_rgb_matrix(); // display current eeprom values
if (rgb_matrix_config.enable) {
rgb_matrix_mode_noeeprom(rgb_matrix_config.mode);
}
}
__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) {