aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/boards/native_posix_64.overlay
blob: 5b8e23d3087ee082fd4d21049904dd156062f175 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

#include <dt-bindings/zmk/keys.h>
#include <dt-bindings/zmk/kscan_mock.h>

/ {
    chosen {
        zephyr,console = &uart0;
        zmk,kscan = &kscan;
    };

    kscan: native_posix_64_kscan_mock {
        compatible = "zmk,kscan-mock";

        rows = <2>;
        columns = <2>;
        exit-after;
    };

    uart0: uart {
        status = "okay";
        compatible = "zephyr,native-posix-uart";
        /* Dummy current-speed entry to comply with serial
         * DTS binding
         */
        current-speed = <0>;
    };
};