diff options
| author | Nick Choi <iinikchi@gmail.com> | 2017-05-25 16:26:30 -0400 |
|---|---|---|
| committer | Nick Choi <iinikchi@gmail.com> | 2017-05-25 16:26:30 -0400 |
| commit | aeb3a34636c614cd392cfc6268491a51a461df31 (patch) | |
| tree | 4395604c2c6bd7d9adb0f1eb0d99b2f536eec88f /quantum/process_keycode/process_tap_dance.h | |
| parent | e695b5a33b97cfb4f9dd8bc8ecaff8aa7e0f14cc (diff) | |
moved specific tap term to its own function
included custom_tapping_term in action struct
Diffstat (limited to 'quantum/process_keycode/process_tap_dance.h')
| -rw-r--r-- | quantum/process_keycode/process_tap_dance.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/quantum/process_keycode/process_tap_dance.h b/quantum/process_keycode/process_tap_dance.h index 95d51f4806..a020f7991e 100644 --- a/quantum/process_keycode/process_tap_dance.h +++ b/quantum/process_keycode/process_tap_dance.h | |||
| @@ -44,6 +44,7 @@ typedef struct | |||
| 44 | qk_tap_dance_user_fn_t on_reset; | 44 | qk_tap_dance_user_fn_t on_reset; |
| 45 | } fn; | 45 | } fn; |
| 46 | qk_tap_dance_state_t state; | 46 | qk_tap_dance_state_t state; |
| 47 | uint16_t custom_tapping_term; | ||
| 47 | void *user_data; | 48 | void *user_data; |
| 48 | } qk_tap_dance_action_t; | 49 | } qk_tap_dance_action_t; |
| 49 | 50 | ||
| @@ -63,9 +64,16 @@ typedef struct | |||
| 63 | .user_data = NULL, \ | 64 | .user_data = NULL, \ |
| 64 | } | 65 | } |
| 65 | 66 | ||
| 66 | #define ACTION_TAP_DANCE_FN_ADVANCED(user_fn_on_each_tap, user_fn_on_dance_finished, user_fn_on_dance_reset, tap_specific_tapping_term) { \ | 67 | #define ACTION_TAP_DANCE_FN_ADVANCED(user_fn_on_each_tap, user_fn_on_dance_finished, user_fn_on_dance_reset) { \ |
| 67 | .fn = { user_fn_on_each_tap, user_fn_on_dance_finished, user_fn_on_dance_reset }, \ | 68 | .fn = { user_fn_on_each_tap, user_fn_on_dance_finished, user_fn_on_dance_reset }, \ |
| 68 | .user_data = (void *)(tap_specific_tapping_term), \ | 69 | .user_data = NULL, \ |
| 70 | .custom_tapping_term = -1, \ | ||
| 71 | } | ||
| 72 | |||
| 73 | #define ACTION_TAP_DANCE_FN_ADVANCED_TIME(user_fn_on_each_tap, user_fn_on_dance_finished, user_fn_on_dance_reset, tap_specific_tapping_term) { \ | ||
| 74 | .fn = { user_fn_on_each_tap, user_fn_on_dance_finished, user_fn_on_dance_reset }, \ | ||
| 75 | .user_data = NULL, \ | ||
| 76 | .custom_tapping_term = tap_specific_tapping_term, \ | ||
| 69 | } | 77 | } |
| 70 | 78 | ||
| 71 | extern qk_tap_dance_action_t tap_dance_actions[]; | 79 | extern qk_tap_dance_action_t tap_dance_actions[]; |
