aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-02-12 23:57:06 +0000
committerQMK Bot <hello@qmk.fm>2021-02-12 23:57:06 +0000
commitc93dc18ddca84c3f5e7671c965507371ce3e61ac (patch)
treec3cf416dba440f8852f2aedc8ab22a098cb2ef82 /docs
parent0edb99a255271e8bdaad0e7e882b6bfad85853c3 (diff)
parentbf1c40d6820b5cfeee0e77483dae2931a9ee2ae1 (diff)
downloadqmk_firmware-c93dc18ddca84c3f5e7671c965507371ce3e61ac.tar.gz
qmk_firmware-c93dc18ddca84c3f5e7671c965507371ce3e61ac.zip
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'docs')
-rw-r--r--docs/ref_functions.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref_functions.md b/docs/ref_functions.md
index 176095070..27ae95aa9 100644
--- a/docs/ref_functions.md
+++ b/docs/ref_functions.md
@@ -93,7 +93,7 @@ And to do so, add `reset_keyboard()` to your function or macro, and this will re
93 93
94## Wiping the EEPROM (Persistent Storage) 94## Wiping the EEPROM (Persistent Storage)
95 95
96If you're having issues with Audio, RGB Underglow, backlighting or keys acting weird, then you can reset the EEPROM (persistent setting storage). Bootmagic is one way to do this, but if that isn't enabled, then you can use a custom macro to do so. 96If you're having issues with Audio, RGB Underglow, backlighting or keys acting weird, then you can reset the EEPROM (persistent setting storage). To force an EEPROM reset, use the [`EEP_RST` keycode](quantum_keycodes.md) or [Bootmagic](feature_bootmagic.md) functionality. If neither of those are an option, then you can use a custom macro to do so.
97 97
98To wipe the EEPROM, run `eeconfig_init()` from your function or macro to reset most of the settings to default. 98To wipe the EEPROM, run `eeconfig_init()` from your function or macro to reset most of the settings to default.
99 99