diff options
author | XScorpion2 <rcalt2vt@gmail.com> | 2019-07-16 02:40:43 -0500 |
---|---|---|
committer | skullydazed <skullydazed@users.noreply.github.com> | 2019-07-16 00:40:43 -0700 |
commit | e2dfb787da2a2ba88e0e074b396a2b988e10eccf (patch) | |
tree | 28a4cb615cdec55697f054be9c8f7bb59db67e50 /tmk_core/common/eeconfig.h | |
parent | 72df7b4c191399c7835527b730647e079b6683ff (diff) | |
download | qmk_firmware-e2dfb787da2a2ba88e0e074b396a2b988e10eccf.tar.gz qmk_firmware-e2dfb787da2a2ba88e0e074b396a2b988e10eccf.zip |
Adding rgb matrix speed into eeprom storage. (#5965)
Zeroing out spd in eeconfig_init_quantum
Switched to block read & update
Update tmk_core/common/eeconfig.h
Co-Authored-By: Drashna Jaelre <drashna@live.com>
Fixing init compile error
Update eeconfig.c
Dead / Missing API cleanup
alignment
Diffstat (limited to 'tmk_core/common/eeconfig.h')
-rw-r--r-- | tmk_core/common/eeconfig.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tmk_core/common/eeconfig.h b/tmk_core/common/eeconfig.h index 0ac3dff07..3100041b4 100644 --- a/tmk_core/common/eeconfig.h +++ b/tmk_core/common/eeconfig.h | |||
@@ -37,12 +37,14 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
37 | #define EECONFIG_UNICODEMODE (uint8_t *)12 | 37 | #define EECONFIG_UNICODEMODE (uint8_t *)12 |
38 | #define EECONFIG_STENOMODE (uint8_t *)13 | 38 | #define EECONFIG_STENOMODE (uint8_t *)13 |
39 | // EEHANDS for two handed boards | 39 | // EEHANDS for two handed boards |
40 | #define EECONFIG_HANDEDNESS (uint8_t *)14 | 40 | #define EECONFIG_HANDEDNESS (uint8_t *)14 |
41 | #define EECONFIG_KEYBOARD (uint32_t *)15 | 41 | #define EECONFIG_KEYBOARD (uint32_t *)15 |
42 | #define EECONFIG_USER (uint32_t *)19 | 42 | #define EECONFIG_USER (uint32_t *)19 |
43 | #define EECONFIG_VELOCIKEY (uint8_t *)23 | 43 | #define EECONFIG_VELOCIKEY (uint8_t *)23 |
44 | 44 | ||
45 | #define EECONFIG_HAPTIC (uint32_t*)24 | 45 | #define EECONFIG_HAPTIC (uint32_t *)24 |
46 | #define EECONFIG_RGB_MATRIX (uint32_t *)28 | ||
47 | #define EECONFIG_RGB_MATRIX_SPEED (uint8_t *)32 | ||
46 | 48 | ||
47 | /* debug bit */ | 49 | /* debug bit */ |
48 | #define EECONFIG_DEBUG_ENABLE (1<<0) | 50 | #define EECONFIG_DEBUG_ENABLE (1<<0) |