diff options
author | Ryan <fauxpark@gmail.com> | 2021-03-08 16:55:00 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-08 16:55:00 +1100 |
commit | 9155b59e1a496b64f7aa576e6e4cb84fd0a9607b (patch) | |
tree | f9960c672a5521d24217fffb2321ee1b978b7f8b /tmk_core/common/eeconfig.h | |
parent | b0069c5c05dac2c910d51ef7f3bf4133721a9c49 (diff) | |
download | qmk_firmware-9155b59e1a496b64f7aa576e6e4cb84fd0a9607b.tar.gz qmk_firmware-9155b59e1a496b64f7aa576e6e4cb84fd0a9607b.zip |
LED Matrix: decouple from Backlight (#12054)
Diffstat (limited to 'tmk_core/common/eeconfig.h')
-rw-r--r-- | tmk_core/common/eeconfig.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tmk_core/common/eeconfig.h b/tmk_core/common/eeconfig.h index 39bc51d5d..9e18fd4e1 100644 --- a/tmk_core/common/eeconfig.h +++ b/tmk_core/common/eeconfig.h | |||
@@ -43,9 +43,14 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
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 | |||
47 | // Mutually exclusive | ||
48 | #define EECONFIG_LED_MATRIX (uint32_t *)28 | ||
46 | #define EECONFIG_RGB_MATRIX (uint32_t *)28 | 49 | #define EECONFIG_RGB_MATRIX (uint32_t *)28 |
47 | // Speed & Flags | 50 | // Speed & Flags |
51 | #define EECONFIG_LED_MATRIX_EXTENDED (uint16_t *)32 | ||
48 | #define EECONFIG_RGB_MATRIX_EXTENDED (uint16_t *)32 | 52 | #define EECONFIG_RGB_MATRIX_EXTENDED (uint16_t *)32 |
53 | |||
49 | // TODO: Combine these into a single word and single block of EEPROM | 54 | // TODO: Combine these into a single word and single block of EEPROM |
50 | #define EECONFIG_KEYMAP_UPPER_BYTE (uint8_t *)34 | 55 | #define EECONFIG_KEYMAP_UPPER_BYTE (uint8_t *)34 |
51 | // Size of EEPROM being used, other code can refer to this for available EEPROM | 56 | // Size of EEPROM being used, other code can refer to this for available EEPROM |