diff options
| author | Joel Challis | 2025-04-21 23:27:56 +0200 |
|---|---|---|
| committer | GitHub | 2025-04-21 23:27:56 +0200 |
| commit | c7cb7ba9765b35930a26ec247e362615ffd10ed2 (patch) | |
| tree | bbab7782a3c1937f69a8c105dc06cfa1b7f54346 /quantum/nvm/eeprom/nvm_eeprom_eeconfig_internal.h | |
| parent | ec324af22eddff1f89f33a30c77a678b111c420c (diff) | |
Implement connection keycode logic (#25176)
Diffstat (limited to 'quantum/nvm/eeprom/nvm_eeprom_eeconfig_internal.h')
| -rw-r--r-- | quantum/nvm/eeprom/nvm_eeprom_eeconfig_internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/quantum/nvm/eeprom/nvm_eeprom_eeconfig_internal.h b/quantum/nvm/eeprom/nvm_eeprom_eeconfig_internal.h index 6efbf9480b..41b76f1f65 100644 --- a/quantum/nvm/eeprom/nvm_eeprom_eeconfig_internal.h +++ b/quantum/nvm/eeprom/nvm_eeprom_eeconfig_internal.h @@ -27,6 +27,7 @@ typedef struct PACKED { }; uint32_t haptic; uint8_t rgblight_ext; + uint8_t connection; } eeprom_core_t; /* EEPROM parameter address */ @@ -46,6 +47,7 @@ typedef struct PACKED { #define EECONFIG_RGB_MATRIX (uint64_t *)(offsetof(eeprom_core_t, rgb_matrix)) #define EECONFIG_HAPTIC (uint32_t *)(offsetof(eeprom_core_t, haptic)) #define EECONFIG_RGBLIGHT_EXTENDED (uint8_t *)(offsetof(eeprom_core_t, rgblight_ext)) +#define EECONFIG_CONNECTION (uint8_t *)(offsetof(eeprom_core_t, connection)) // Size of EEPROM being used for core data storage #define EECONFIG_BASE_SIZE ((uint8_t)sizeof(eeprom_core_t)) |