forked from kofal.net/zmk
fix(sticky keys): fix tapping-sticky-keys bug.
Sticky keys should be cleared when they were tapped in rapid succession before the timer runs out.
This commit is contained in:
committed by
Pete Johanson
parent
f86e0fff14
commit
e00eceb508
1
app/tests/sticky-keys/9-sk-dn-up-dn-up/events.patterns
Normal file
1
app/tests/sticky-keys/9-sk-dn-up-dn-up/events.patterns
Normal file
@@ -0,0 +1 @@
|
||||
s/.*hid_listener_keycode_//p
|
||||
@@ -0,0 +1,4 @@
|
||||
pressed: usage_page 0x07 keycode 0xe1 mods 0x00
|
||||
released: usage_page 0x07 keycode 0xe1 mods 0x00
|
||||
pressed: usage_page 0x07 keycode 0xe1 mods 0x00
|
||||
released: usage_page 0x07 keycode 0xe1 mods 0x00
|
||||
27
app/tests/sticky-keys/9-sk-dn-up-dn-up/native_posix.keymap
Normal file
27
app/tests/sticky-keys/9-sk-dn-up-dn-up/native_posix.keymap
Normal file
@@ -0,0 +1,27 @@
|
||||
#include <dt-bindings/zmk/keys.h>
|
||||
#include <behaviors.dtsi>
|
||||
#include <dt-bindings/zmk/kscan-mock.h>
|
||||
|
||||
/ {
|
||||
keymap {
|
||||
compatible = "zmk,keymap";
|
||||
label ="Default keymap";
|
||||
|
||||
default_layer {
|
||||
bindings = <
|
||||
&sk LEFT_SHIFT &none
|
||||
&none &none
|
||||
>;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
&kscan {
|
||||
events = <
|
||||
ZMK_MOCK_PRESS(0,0,10)
|
||||
ZMK_MOCK_RELEASE(0,0,10)
|
||||
/* the sticky key is pressed again, so the previous one must be cancelled */
|
||||
ZMK_MOCK_PRESS(0,0,10)
|
||||
ZMK_MOCK_RELEASE(0,0,1200)
|
||||
>;
|
||||
};
|
||||
Reference in New Issue
Block a user