Browse Source

Add swap hands status function (#19831)

Co-authored-by: Drashna Jaelre <drashna@live.com>
pull/19856/head
Albert Y 1 year ago
committed by GitHub
parent
commit
9908ed7ecd
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 17 additions and 0 deletions
  1. +6
    -0
      docs/feature_swap_hands.md
  2. +4
    -0
      quantum/action.c
  3. +7
    -0
      quantum/action.h

+ 6
- 0
docs/feature_swap_hands.md View File

@ -44,3 +44,9 @@ As an example, if a split keyboard has a single encoder per side, you can swap t
const uint8_t PROGMEM encoder_hand_swap_config[NUM_ENCODERS] = { 1, 0 }; const uint8_t PROGMEM encoder_hand_swap_config[NUM_ENCODERS] = { 1, 0 };
#endif #endif
``` ```
### Functions :id=functions
| Function | Description |
|----------------------|---------------------------------------------|
| `is_swap_hands_on()` | Returns true if Swap-Hands is currently on. |

+ 4
- 0
quantum/action.c View File

@ -161,6 +161,10 @@ void set_swap_hands_state(size_t index, uint8_t *swap_state, bool on) {
} }
} }
bool is_swap_hands_on(void) {
return swap_hands;
}
/** \brief Process Hand Swap /** \brief Process Hand Swap
* *
* FIXME: Needs documentation. * FIXME: Needs documentation.


+ 7
- 0
quantum/action.h View File

@ -84,6 +84,13 @@ typedef uint32_t swap_state_row_t;
# error "MATRIX_COLS: invalid value" # error "MATRIX_COLS: invalid value"
# endif # endif
/**
* @brief Get the swap hands enable state
*
* @return true
* @return false
*/
bool is_swap_hands_on(void);
void process_hand_swap(keyevent_t *record); void process_hand_swap(keyevent_t *record);
#endif #endif


Loading…
Cancel
Save