diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-10-27 15:57:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-27 15:57:28 -0400 |
commit | f3153b17d293466160c03f7cb618a2be939c55f7 (patch) | |
tree | bc411639d9d4ad197ee6ce6976051356c82fa148 /app/drivers/zephyr/dts/bindings | |
parent | 3b9caaaf907d67dc76daa0db074aac6a8efec02a (diff) | |
parent | 8a98212a02a3a6304a1f275450264f46a60d011b (diff) |
Merge pull request #292 from nullbitsco/nullbitsco_nibble
Add zmk_kscan_gpio_demux kscan driver & NIBBLE keyboard
Diffstat (limited to 'app/drivers/zephyr/dts/bindings')
-rw-r--r-- | app/drivers/zephyr/dts/bindings/zmk,kscan-gpio-demux.yaml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app/drivers/zephyr/dts/bindings/zmk,kscan-gpio-demux.yaml b/app/drivers/zephyr/dts/bindings/zmk,kscan-gpio-demux.yaml new file mode 100644 index 0000000..a2d8d24 --- /dev/null +++ b/app/drivers/zephyr/dts/bindings/zmk,kscan-gpio-demux.yaml @@ -0,0 +1,22 @@ +# Copyright (c) 2020, The ZMK Contributors +# SPDX-License-Identifier: MIT + +description: GPIO keyboard demux controller + +compatible: "zmk,kscan-gpio-demux" + +include: kscan.yaml + +properties: + input-gpios: + type: phandle-array + required: true + output-gpios: + type: phandle-array + required: true + debounce-period: + type: int + default: 5 + polling-interval-msec: + type: int + default: 25 |