diff options
author | Ofer Plesser <plesserofer@gmail.com> | 2016-12-10 16:11:59 +0200 |
---|---|---|
committer | Ofer Plesser <plesserofer@gmail.com> | 2016-12-10 16:11:59 +0200 |
commit | b6bf4e0dce062a535685c4e772f613252d401ed3 (patch) | |
tree | 26ed7273077f84e33d5cea525f7cc662637212c3 /quantum/quantum.c | |
parent | eac8fa799909817bfc7cb4043448f85551154c6b (diff) | |
download | firmware-b6bf4e0dce062a535685c4e772f613252d401ed3.tar.gz firmware-b6bf4e0dce062a535685c4e772f613252d401ed3.tar.bz2 firmware-b6bf4e0dce062a535685c4e772f613252d401ed3.zip |
Added support for timing out combos if a key as been pressed for longer than COMBO_TERM
Diffstat (limited to 'quantum/quantum.c')
-rw-r--r-- | quantum/quantum.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c index eabeacff8..7767b6301 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c @@ -509,6 +509,11 @@ void matrix_scan_quantum() { #ifdef TAP_DANCE_ENABLE matrix_scan_tap_dance(); #endif + + #ifdef COMBO_ENABLE + matrix_scan_combo(); + #endif + matrix_scan_kb(); } |