diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-08-17 21:15:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-17 21:15:29 -0400 |
commit | f4f80a0e3ac24f573ce72fea88e291e94108b9d8 (patch) | |
tree | 0bee9e1da04d21e6852c1e9a0c29bfe6e1a82176 /quantum/process_keycode/process_tap_dance.h | |
parent | 1442a882d4dd11eea033c34308c8adf49be53e95 (diff) | |
parent | 29f64d7a93d941167c6c6e95f893ab84586b2205 (diff) |
Merge pull request #645 from algernon/f/tap-dance/buffering
tap-dance rework
Diffstat (limited to 'quantum/process_keycode/process_tap_dance.h')
-rw-r--r-- | quantum/process_keycode/process_tap_dance.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/quantum/process_keycode/process_tap_dance.h b/quantum/process_keycode/process_tap_dance.h index 6a1258067e..d7b857bdc6 100644 --- a/quantum/process_keycode/process_tap_dance.h +++ b/quantum/process_keycode/process_tap_dance.h @@ -11,8 +11,9 @@ typedef struct uint8_t count; uint16_t keycode; uint16_t timer; - bool active:1; - bool pressed:1; + bool interrupted; + bool pressed; + bool finished; } qk_tap_dance_state_t; #define TD(n) (QK_TAP_DANCE + n) @@ -26,6 +27,7 @@ typedef struct qk_tap_dance_user_fn_t on_dance_finished; qk_tap_dance_user_fn_t on_reset; } fn; + qk_tap_dance_state_t state; void *user_data; } qk_tap_dance_action_t; @@ -48,8 +50,7 @@ typedef struct .fn = { user_fn_on_each_tap, user_fn_on_dance_finished, user_fn_on_reset } \ } -extern const qk_tap_dance_action_t tap_dance_actions[]; -extern bool td_debug_enable; +extern qk_tap_dance_action_t tap_dance_actions[]; /* To be used internally */ |