diff options
author | QMK Bot <hello@qmk.fm> | 2024-09-06 16:31:28 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2024-09-06 16:31:28 +0000 |
commit | a4c286bb34ba130edfef0c55acbba6db690b32cd (patch) | |
tree | 4a6c622c7d7ca925069815de39849831f81918bf /docs/feature_eeprom.md | |
parent | 46d2e15b1ff1f2f45014437501db1926fb1b17ef (diff) | |
parent | f0435451446621a0e768c8a9123789b239a325b4 (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'docs/feature_eeprom.md')
-rw-r--r-- | docs/feature_eeprom.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/feature_eeprom.md b/docs/feature_eeprom.md index 2912407ac7..22257b3202 100644 --- a/docs/feature_eeprom.md +++ b/docs/feature_eeprom.md @@ -109,7 +109,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { } } ``` -And lastly, you want to add the `eeconfig_init_user` function, so that when the EEPROM is reset, you can specify default values, and even custom actions. To force an EEPROM reset, use the `EE_CLR` keycode or [Bootmagic Lite](features/bootmagic) functionallity. For example, if you want to set rgb layer indication by default, and save the default valued. +And lastly, you want to add the `eeconfig_init_user` function, so that when the EEPROM is reset, you can specify default values, and even custom actions. To force an EEPROM reset, use the `EE_CLR` keycode or [Bootmagic](features/bootmagic) functionallity. For example, if you want to set rgb layer indication by default, and save the default valued. ```c void eeconfig_init_user(void) { // EEPROM is getting reset! |