diff options
author | Joel Challis <git@zvecr.com> | 2021-10-08 13:44:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-08 13:44:07 +0100 |
commit | 00fd4044334022b5bbace987f8ab94b72e9f49bc (patch) | |
tree | 618c20f13236bf94cea9e67fb5ae01ec3000ee48 /quantum/rgb_matrix | |
parent | 7c5233e097ce9858559af5bcec09b0c0903a7217 (diff) | |
download | qmk_firmware-00fd4044334022b5bbace987f8ab94b72e9f49bc.tar.gz qmk_firmware-00fd4044334022b5bbace987f8ab94b72e9f49bc.zip |
Put back eeconfig_update_ functions (#14751)
Diffstat (limited to 'quantum/rgb_matrix')
-rw-r--r-- | quantum/rgb_matrix/rgb_matrix.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/quantum/rgb_matrix/rgb_matrix.c b/quantum/rgb_matrix/rgb_matrix.c index 0c9ef8f7a7..c260b6e1e8 100644 --- a/quantum/rgb_matrix/rgb_matrix.c +++ b/quantum/rgb_matrix/rgb_matrix.c @@ -141,6 +141,8 @@ const uint8_t k_rgb_matrix_split[2] = RGB_MATRIX_SPLIT; EECONFIG_DEBOUNCE_HELPER(rgb_matrix, EECONFIG_RGB_MATRIX, rgb_matrix_config); +void eeconfig_update_rgb_matrix(void) { eeconfig_flush_rgb_matrix(true); } + void eeconfig_update_rgb_matrix_default(void) { dprintf("eeconfig_update_rgb_matrix_default\n"); rgb_matrix_config.enable = 1; |