diff options
| author | Joel Challis | 2023-12-12 00:06:18 +0100 |
|---|---|---|
| committer | GitHub | 2023-12-12 00:06:18 +0100 |
| commit | 4682226e20d17437c0a6f67f5d6160432074d948 (patch) | |
| tree | 94a85cb8b8ae55c8f3db7ab09d8af13d66bf0bfa /quantum/keymap_introspection.h | |
| parent | d85f954d3065da06e0c7eb14068d61f18b23bd25 (diff) | |
Keymap introspection for Dip Switches (#22543)
Diffstat (limited to 'quantum/keymap_introspection.h')
| -rw-r--r-- | quantum/keymap_introspection.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/quantum/keymap_introspection.h b/quantum/keymap_introspection.h index 2012a2b8cc..f7516bf42a 100644 --- a/quantum/keymap_introspection.h +++ b/quantum/keymap_introspection.h @@ -36,6 +36,18 @@ uint16_t keycode_at_encodermap_location(uint8_t layer_num, uint8_t encoder_idx, #endif // defined(ENCODER_ENABLE) && defined(ENCODER_MAP_ENABLE) //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +// Dip Switch mapping + +#if defined(DIP_SWITCH_ENABLE) && defined(DIP_SWITCH_MAP_ENABLE) + +// Get the keycode for the dip_switch mapping location, stored in firmware rather than any other persistent storage +uint16_t keycode_at_dip_switch_map_location_raw(uint8_t switch_idx, bool on); +// Get the keycode for the dip_switch mapping location, potentially stored dynamically +uint16_t keycode_at_dip_switch_map_location(uint8_t switch_idx, bool on); + +#endif // defined(DIP_SWITCH_ENABLE) && defined(DIP_SWITCH_MAP_ENABLE) + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Combos #if defined(COMBO_ENABLE) |