moon test
This commit is contained in:
parent
69806fe798
commit
8da5a89386
9 changed files with 349 additions and 0 deletions
12
config/boards/shields/moon/Kconfig.defconfig
Normal file
12
config/boards/shields/moon/Kconfig.defconfig
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
# Copyright (c) 2020 The ZMK Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
if SHIELD_MOON
|
||||
|
||||
config ZMK_KEYBOARD_NAME
|
||||
default "Moon"
|
||||
|
||||
config ZMK_USB
|
||||
default y
|
||||
|
||||
endif
|
||||
5
config/boards/shields/moon/Kconfig.shield
Normal file
5
config/boards/shields/moon/Kconfig.shield
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# Copyright (c) 2020 The ZMK Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
config SHIELD_HUMMINGBIRD
|
||||
def_bool $(shields_list_contains,hummingbird)
|
||||
4
config/boards/shields/moon/boards/seeeduino_xiao.conf
Normal file
4
config/boards/shields/moon/boards/seeeduino_xiao.conf
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
CONFIG_CONSOLE=n
|
||||
CONFIG_UART_CONSOLE=n
|
||||
CONFIG_UART_INTERRUPT_DRIVEN=n
|
||||
CONFIG_SERIAL=n
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
CONFIG_CONSOLE=n
|
||||
CONFIG_UART_CONSOLE=n
|
||||
CONFIG_UART_INTERRUPT_DRIVEN=n
|
||||
CONFIG_ZMK_USB=y
|
||||
CONFIG_ZMK_BLE=y
|
||||
57
config/boards/shields/moon/moon.overlay
Normal file
57
config/boards/shields/moon/moon.overlay
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
/*
|
||||
* Copyright (c) 2020 The ZMK Contributors
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*/
|
||||
|
||||
#include <dt-bindings/zmk/matrix_transform.h>
|
||||
|
||||
/ {
|
||||
chosen {
|
||||
zmk,kscan = &kscan0;
|
||||
zmk,matrix_transform = &default_transform;
|
||||
/delete-property/ zephyr,console;
|
||||
/delete-property/ zephyr,shell-uart;
|
||||
};
|
||||
|
||||
default_transform: keymap_transform_0 {
|
||||
compatible = "zmk,matrix-transform";
|
||||
columns = <5>;
|
||||
rows = <6>;
|
||||
map = <
|
||||
RC(0,1) RC(0,2) RC(0,3) RC(0,4) RC(3,0) RC(3,1) RC(3,2) RC(3,3)
|
||||
RC(0,0) RC(1,1) RC(1,2) RC(1,3) RC(1,4) RC(4,0) RC(4,1) RC(4,2) RC(4,3) RC(3,4)
|
||||
RC(1,0) RC(2,0) RC(2,1) RC(2,2) RC(5,2) RC(5,3) RC(5,4) RC(4,4)
|
||||
RC(2,3) RC(2,4) RC(5,0) RC(5,2)
|
||||
>;
|
||||
};
|
||||
|
||||
|
||||
kscan0: kscan_0 {
|
||||
compatible = "zmk,kscan-gpio-matrix";
|
||||
label = "KSCAN";
|
||||
diode-direction = "col2row";
|
||||
|
||||
col-gpios
|
||||
= <&xiao_d 0 GPIO_ACTIVE_HIGH>
|
||||
, <&xiao_d 1 GPIO_ACTIVE_HIGH>
|
||||
, <&xiao_d 2 GPIO_ACTIVE_HIGH>
|
||||
, <&xiao_d 3 GPIO_ACTIVE_HIGH>
|
||||
, <&xiao_d 4 GPIO_ACTIVE_HIGH>
|
||||
;
|
||||
|
||||
row-gpios
|
||||
= <&xiao_d 5 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>
|
||||
, <&xiao_d 6 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>
|
||||
, <&xiao_d 10 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>
|
||||
, <&xiao_d 9 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>
|
||||
, <&xiao_d 8 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>
|
||||
, <&xiao_d 7 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>
|
||||
;
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
&xiao_spi { status = "disabled"; };
|
||||
&xiao_i2c { status = "disabled"; };
|
||||
&xiao_serial { status = "disabled"; };
|
||||
Loading…
Add table
Add a link
Reference in a new issue