forked from zmkfirmware/zmk
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bugfix(sticky keys): release active sticky keys properly
see zmkfirmware#445
- Loading branch information
1 parent
7babe7f
commit 3bf770a
Showing
6 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
s/.*hid_listener_keycode_//p |
8 changes: 8 additions & 0 deletions
8
app/tests/sticky-keys/8-lsk-osk-combination/keycode_events.snapshot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
pressed: usage_page 0x07 keycode 0xe0 mods 0x00 | ||
pressed: usage_page 0x07 keycode 0x1c mods 0x00 | ||
released: usage_page 0x07 keycode 0xe0 mods 0x00 | ||
released: usage_page 0x07 keycode 0x1c mods 0x00 | ||
pressed: usage_page 0x07 keycode 0xe0 mods 0x00 | ||
pressed: usage_page 0x07 keycode 0x1c mods 0x00 | ||
released: usage_page 0x07 keycode 0xe0 mods 0x00 | ||
released: usage_page 0x07 keycode 0x1c mods 0x00 |
47 changes: 47 additions & 0 deletions
47
app/tests/sticky-keys/8-lsk-osk-combination/native_posix.keymap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#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 E &sl 1 | ||
&kp A &kp B>; | ||
}; | ||
|
||
lower_layer { | ||
bindings = < | ||
&sk LEFT_CONTROL &kp X | ||
&kp Y &kp Z>; | ||
}; | ||
}; | ||
}; | ||
|
||
&kscan { | ||
events = < | ||
/* tap sl lower_layer */ | ||
ZMK_MOCK_PRESS(0,1,10) | ||
ZMK_MOCK_RELEASE(0,1,10) | ||
/* tap sk LEFT_CONTROL */ | ||
ZMK_MOCK_PRESS(0,0,10) | ||
ZMK_MOCK_RELEASE(0,0,10) | ||
/* tap Y */ | ||
ZMK_MOCK_PRESS(1,0,10) | ||
ZMK_MOCK_RELEASE(1,0,10) | ||
|
||
/* repeat */ | ||
/* tap sl */ | ||
ZMK_MOCK_PRESS(0,1,10) | ||
ZMK_MOCK_RELEASE(0,1,10) | ||
/* tap sk */ | ||
ZMK_MOCK_PRESS(0,0,10) | ||
ZMK_MOCK_RELEASE(0,0,10) | ||
/* tap Y */ | ||
ZMK_MOCK_PRESS(1,0,10) | ||
ZMK_MOCK_RELEASE(1,0,10) | ||
>; | ||
}; |