diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2024-05-26 18:24:19 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2024-05-26 18:24:19 +0200 |
commit | 2a01c0e6950f0a6aa132e8e21f13e1117a28a003 (patch) | |
tree | 5a52f2599a262b9560620364f268be1b5e62e6f5 /qmk/keyboards/sofle_choc/keymaps | |
parent | 265fd6478f634895cb22488c42aa9eab50788cd8 (diff) |
Updated the tap delay for KEY_W
Diffstat (limited to 'qmk/keyboards/sofle_choc/keymaps')
-rw-r--r-- | qmk/keyboards/sofle_choc/keymaps/custom/keycodes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qmk/keyboards/sofle_choc/keymaps/custom/keycodes.c b/qmk/keyboards/sofle_choc/keymaps/custom/keycodes.c index d3cb716..c21ba53 100644 --- a/qmk/keyboards/sofle_choc/keymaps/custom/keycodes.c +++ b/qmk/keyboards/sofle_choc/keymaps/custom/keycodes.c @@ -51,7 +51,7 @@ uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) { case KEY_E: return 230; case KEY_W: - return 300; + return 400; case KEY_EE: return 350; default: @@ -62,7 +62,7 @@ uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) { static uint32_t key_timer; // timer for last keyboard activity, use // 32bit value and function to make longer // idle time possible -static uint16_t latest_key; +static uint16_t latest_key = 0L; bool process_record_user(uint16_t keycode, keyrecord_t *record) { |