842aa5a842
Aligns *.h and *.c to underscore naming convention. These were kept (with warnings) for backwards compatibility with external boards/shields: - kscan-mock.h - matrix-transform.h They should be removed in the future. PR: #523
33 lines
534 B
Text
33 lines
534 B
Text
#include <dt-bindings/zmk/keys.h>
|
|
#include <behaviors.dtsi>
|
|
#include <dt-bindings/zmk/kscan_mock.h>
|
|
|
|
/*
|
|
this test verifies that the correct key is released when a layer is enabled "on top"
|
|
and the original key is "covered".
|
|
*/
|
|
/ {
|
|
keymap {
|
|
compatible = "zmk,keymap";
|
|
label ="Default keymap";
|
|
|
|
default_layer {
|
|
bindings = <
|
|
&trans &mo 1
|
|
&trans &trans>;
|
|
};
|
|
|
|
layer_1 {
|
|
bindings = <
|
|
&trans &kp A
|
|
&trans &trans>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&kscan {
|
|
events = <
|
|
ZMK_MOCK_PRESS(0,1,10)
|
|
ZMK_MOCK_RELEASE(0,1,10)
|
|
>;
|
|
};
|