diff --git a/docs/docs/features/dongle.mdx b/docs/docs/features/dongle.mdx index 79acb87c..0b64c8b7 100644 --- a/docs/docs/features/dongle.mdx +++ b/docs/docs/features/dongle.mdx @@ -150,13 +150,19 @@ Your keyboard's matrix transform must be both defined and selected under the `ch // import the default shield configuration #include "my_keyboard.dtsi" -&kscan { - compatible = "zmk,kscan-mock"; +/ { + chosen { + zmk,kscan = &mock_kscan; + }; - columns = <0>; - rows = <0>; - events = <0>; -} + mock_kscan: kscan_1 { + compatible = "zmk,kscan-mock"; + + columns = <0>; + rows = <0>; + events = <0>; + }; +}; ```