summaryrefslogtreecommitdiff
path: root/quantum/led_matrix.c
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2021-06-22 09:37:28 +1000
committerGitHub <noreply@github.com>2021-06-22 09:37:28 +1000
commit0e3ae2cde033969507355abcb85f5f7aba2ae978 (patch)
tree2009d330f77d4fd77f1cf200d8fb92dff213f3c3 /quantum/led_matrix.c
parenta89eaceb59d0133013a7638b3f38f0104e0d6c9f (diff)
Skip EEPROM writes once done. (#13293)
Diffstat (limited to 'quantum/led_matrix.c')
-rw-r--r--quantum/led_matrix.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/quantum/led_matrix.c b/quantum/led_matrix.c
index e7e933e1dd..9b6151604f 100644
--- a/quantum/led_matrix.c
+++ b/quantum/led_matrix.c
@@ -286,6 +286,7 @@ static void led_task_timers(void) {
static void led_task_sync(void) {
// next task
if (led_update_eeprom) eeconfig_update_led_matrix();
+ led_update_eeprom = false;
if (sync_timer_elapsed32(g_led_timer) >= LED_MATRIX_LED_FLUSH_LIMIT) led_task_state = STARTING;
}