Fixed dogbone definitions to be full working for murphpad.
This commit is contained in:
parent
c0f79de695
commit
b4835f22c2
13 changed files with 300 additions and 7 deletions
|
@ -49,4 +49,4 @@
|
||||||
|
|
||||||
pro_micro_i2c: &i2c0 {};
|
pro_micro_i2c: &i2c0 {};
|
||||||
pro_micro_spi: &spi0 {};
|
pro_micro_spi: &spi0 {};
|
||||||
pro_micro_serial: &uart1 {};
|
pro_micro_serial: &uart0 {};
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
ext-power {
|
ext-power {
|
||||||
compatible = "zmk,ext-power-generic";
|
compatible = "zmk,ext-power-generic";
|
||||||
label = "EXT_POWER";
|
label = "EXT_POWER";
|
||||||
control-gpios = <&gpio1 9 GPIO_ACTIVE_HIGH>;
|
control-gpios = <&gpio1 9 GPIO_ACTIVE_LOW>;
|
||||||
};
|
};
|
||||||
|
|
||||||
vbatt {
|
vbatt {
|
||||||
|
|
|
@ -48,10 +48,10 @@
|
||||||
scl-pin = <11>;
|
scl-pin = <11>;
|
||||||
};
|
};
|
||||||
|
|
||||||
&uart1 {
|
&uart0 {
|
||||||
compatible = "nordic,nrf-uarte";
|
compatible = "nordic,nrf-uarte";
|
||||||
tx-pin = <14>;
|
tx-pin = <46>;
|
||||||
rx-pin = <12>;
|
rx-pin = <44>;
|
||||||
};
|
};
|
||||||
|
|
||||||
&usbd {
|
&usbd {
|
||||||
|
|
|
@ -44,8 +44,8 @@
|
||||||
|
|
||||||
&i2c0 {
|
&i2c0 {
|
||||||
compatible = "nordic,nrf-twi";
|
compatible = "nordic,nrf-twi";
|
||||||
sda-pin = <17>;
|
sda-pin = <32>;
|
||||||
scl-pin = <20>;
|
scl-pin = <36>;
|
||||||
};
|
};
|
||||||
|
|
||||||
&uart0 {
|
&uart0 {
|
||||||
|
|
45
app/boards/shields/murphpad/Kconfig.defconfig
Normal file
45
app/boards/shields/murphpad/Kconfig.defconfig
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
# Copyright (c) 2021 The ZMK Contributors
|
||||||
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
if SHIELD_MURPHPAD
|
||||||
|
|
||||||
|
config ZMK_KEYBOARD_NAME
|
||||||
|
default "MurphPad"
|
||||||
|
|
||||||
|
endif
|
||||||
|
|
||||||
|
if ZMK_DISPLAY
|
||||||
|
|
||||||
|
config I2C
|
||||||
|
default y
|
||||||
|
|
||||||
|
config SSD1306
|
||||||
|
default y
|
||||||
|
|
||||||
|
config SSD1306_REVERSE_MODE
|
||||||
|
default y
|
||||||
|
|
||||||
|
endif # ZMK_DISPLAY
|
||||||
|
|
||||||
|
if LVGL
|
||||||
|
|
||||||
|
config LVGL_HOR_RES_MAX
|
||||||
|
default 128
|
||||||
|
|
||||||
|
config LVGL_VER_RES_MAX
|
||||||
|
default 32
|
||||||
|
|
||||||
|
config LVGL_VDB_SIZE
|
||||||
|
default 64
|
||||||
|
|
||||||
|
config LVGL_DPI
|
||||||
|
default 148
|
||||||
|
|
||||||
|
config LVGL_BITS_PER_PIXEL
|
||||||
|
default 1
|
||||||
|
|
||||||
|
choice LVGL_COLOR_DEPTH
|
||||||
|
default LVGL_COLOR_DEPTH_1
|
||||||
|
endchoice
|
||||||
|
|
||||||
|
endif # LVGL
|
5
app/boards/shields/murphpad/Kconfig.shield
Normal file
5
app/boards/shields/murphpad/Kconfig.shield
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
# Copyright (c) 2021 The ZMK Contributors
|
||||||
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
config SHIELD_MURPHPAD
|
||||||
|
def_bool $(shields_list_contains,murphpad)
|
3
app/boards/shields/murphpad/boards/dogbone.conf
Normal file
3
app/boards/shields/murphpad/boards/dogbone.conf
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# Uncomment both to enable underglow
|
||||||
|
CONFIG_ZMK_RGB_UNDERGLOW=y
|
||||||
|
CONFIG_WS2812_STRIP=y
|
34
app/boards/shields/murphpad/boards/dogbone.overlay
Normal file
34
app/boards/shields/murphpad/boards/dogbone.overlay
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2021 The ZMK Contributors
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: MIT
|
||||||
|
*/
|
||||||
|
|
||||||
|
&spi1 {
|
||||||
|
compatible = "nordic,nrf-spim";
|
||||||
|
status = "okay";
|
||||||
|
mosi-pin = <43>;
|
||||||
|
// Unused pins, needed for SPI definition, but not used by the ws2812 driver itself.
|
||||||
|
sck-pin = <5>;
|
||||||
|
miso-pin = <7>;
|
||||||
|
|
||||||
|
led_strip: ws2812@0 {
|
||||||
|
compatible = "worldsemi,ws2812-spi";
|
||||||
|
label = "WS2812";
|
||||||
|
|
||||||
|
/* SPI */
|
||||||
|
reg = <0>; /* ignored, but necessary for SPI bindings */
|
||||||
|
spi-max-frequency = <4000000>;
|
||||||
|
|
||||||
|
/* WS2812 */
|
||||||
|
chain-length = <8>; /* number of LEDs */
|
||||||
|
spi-one-frame = <0x70>;
|
||||||
|
spi-zero-frame = <0x40>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
/ {
|
||||||
|
chosen {
|
||||||
|
zmk,underglow = &led_strip;
|
||||||
|
};
|
||||||
|
};
|
3
app/boards/shields/murphpad/boards/nice_nano.conf
Normal file
3
app/boards/shields/murphpad/boards/nice_nano.conf
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# Uncomment both to enable underglow
|
||||||
|
CONFIG_ZMK_RGB_UNDERGLOW=y
|
||||||
|
CONFIG_WS2812_STRIP=y
|
34
app/boards/shields/murphpad/boards/nice_nano.overlay
Normal file
34
app/boards/shields/murphpad/boards/nice_nano.overlay
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2021 The ZMK Contributors
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: MIT
|
||||||
|
*/
|
||||||
|
|
||||||
|
&spi1 {
|
||||||
|
compatible = "nordic,nrf-spim";
|
||||||
|
status = "okay";
|
||||||
|
mosi-pin = <29>;
|
||||||
|
// Unused pins, needed for SPI definition, but not used by the ws2812 driver itself.
|
||||||
|
sck-pin = <5>;
|
||||||
|
miso-pin = <7>;
|
||||||
|
|
||||||
|
led_strip: ws2812@0 {
|
||||||
|
compatible = "worldsemi,ws2812-spi";
|
||||||
|
label = "WS2812";
|
||||||
|
|
||||||
|
/* SPI */
|
||||||
|
reg = <0>; /* ignored, but necessary for SPI bindings */
|
||||||
|
spi-max-frequency = <4000000>;
|
||||||
|
|
||||||
|
/* WS2812 */
|
||||||
|
chain-length = <8>; /* number of LEDs */
|
||||||
|
spi-one-frame = <0x70>;
|
||||||
|
spi-zero-frame = <0x40>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
/ {
|
||||||
|
chosen {
|
||||||
|
zmk,underglow = &led_strip;
|
||||||
|
};
|
||||||
|
};
|
9
app/boards/shields/murphpad/murphpad.conf
Normal file
9
app/boards/shields/murphpad/murphpad.conf
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
# Uncomment to turn on logging, and set ZMK logging to debug output
|
||||||
|
# CONFIG_ZMK_USB_LOGGING=y
|
||||||
|
|
||||||
|
# Uncomment both to enable encoder
|
||||||
|
CONFIG_EC11=y
|
||||||
|
CONFIG_EC11_TRIGGER_GLOBAL_THREAD=y
|
||||||
|
|
||||||
|
# Uncomment to enable OLED
|
||||||
|
CONFIG_ZMK_DISPLAY=y
|
86
app/boards/shields/murphpad/murphpad.keymap
Normal file
86
app/boards/shields/murphpad/murphpad.keymap
Normal file
|
@ -0,0 +1,86 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2021 The ZMK Contributors
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: MIT
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <behaviors.dtsi>
|
||||||
|
#include <dt-bindings/zmk/keys.h>
|
||||||
|
#include <dt-bindings/zmk/bt.h>
|
||||||
|
#include <dt-bindings/zmk/rgb.h>
|
||||||
|
#include <dt-bindings/zmk/ext_power.h>
|
||||||
|
|
||||||
|
|
||||||
|
#define TIMEOUT 300
|
||||||
|
|
||||||
|
&encoder_1 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&encoder_2 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
/ {
|
||||||
|
combos {
|
||||||
|
compatible = "zmk,combos";
|
||||||
|
combo_btclr {
|
||||||
|
timeout-ms = <TIMEOUT>;
|
||||||
|
key-positions = <1 6>;
|
||||||
|
bindings = <&bt BT_CLR>;
|
||||||
|
};
|
||||||
|
combo_reset {
|
||||||
|
timeout-ms = <TIMEOUT>;
|
||||||
|
key-positions = <1 3>;
|
||||||
|
bindings = <&reset>;
|
||||||
|
};
|
||||||
|
combo_bootloader {
|
||||||
|
timeout-ms = <TIMEOUT>;
|
||||||
|
key-positions = <1 2>;
|
||||||
|
bindings = <&bootloader>;
|
||||||
|
};
|
||||||
|
combo_bt_nxt {
|
||||||
|
timeout-ms = <TIMEOUT>;
|
||||||
|
key-positions = <1 4>;
|
||||||
|
bindings = <&bt BT_NXT>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
sensors {
|
||||||
|
compatible = "zmk,keymap-sensors";
|
||||||
|
sensors = <&encoder_1 &encoder_2>;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
keymap0: keymap {
|
||||||
|
compatible = "zmk,keymap";
|
||||||
|
|
||||||
|
default_layer {
|
||||||
|
label = "default layer";
|
||||||
|
bindings = <
|
||||||
|
&ext_power EP_TOG &kp TAB &kp F5 &kp LC(LA(C)) &kp LG(D)
|
||||||
|
&rgb_ug RGB_TOG &kp ESC &kp KP_DIVIDE &kp KP_MULTIPLY &kp KP_MINUS
|
||||||
|
&rgb_ug RGB_EFF &kp KP_N7 &kp KP_N8 &kp KP_N9 &kp KP_PLUS
|
||||||
|
&kp C_MUTE &kp KP_N4 &kp KP_N5 &kp KP_N6 &trans
|
||||||
|
&mo 1 &kp KP_N1 &kp KP_N2 &kp KP_N3 &kp KP_ENTER
|
||||||
|
&kp BSPC &kp KP_N0 &trans &kp KP_DOT &trans
|
||||||
|
>;
|
||||||
|
sensor-bindings = <&inc_dec_kp C_VOL_UP C_VOL_DN &inc_dec_kp PG_UP PG_DN>;
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
fn_layer {
|
||||||
|
label = "fn layer";
|
||||||
|
bindings = <
|
||||||
|
&trans &trans &trans &trans &trans
|
||||||
|
&trans &kp KP_NUM &trans &trans &trans
|
||||||
|
&trans &rgb_ug RGB_SAD &rgb_ug RGB_SAI &trans &trans
|
||||||
|
&bt BT_CLR &rgb_ug RGB_HUD &rgb_ug RGB_HUI &trans &trans
|
||||||
|
&trans &rgb_ug RGB_EFR &rgb_ug RGB_EFF &trans &trans
|
||||||
|
&kp DEL &rgb_ug RGB_SPD &rgb_ug RGB_SPD &rgb_ug RGB_SPI &rgb_ug RGB_SPI
|
||||||
|
>;
|
||||||
|
sensor-bindings = <&inc_dec_kp PG_UP PG_DN &inc_dec_kp C_VOL_UP C_VOL_DN>;
|
||||||
|
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
74
app/boards/shields/murphpad/murphpad.overlay
Normal file
74
app/boards/shields/murphpad/murphpad.overlay
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2021 The ZMK Contributors
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: MIT
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <dt-bindings/zmk/matrix_transform.h>
|
||||||
|
|
||||||
|
/ {
|
||||||
|
chosen {
|
||||||
|
zmk,kscan = &kscan0;
|
||||||
|
};
|
||||||
|
|
||||||
|
kscan0: kscan {
|
||||||
|
compatible = "zmk,kscan-gpio-matrix";
|
||||||
|
label = "KSCAN";
|
||||||
|
|
||||||
|
diode-direction = "col2row";
|
||||||
|
row-gpios
|
||||||
|
= <&pro_micro_a 2 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>
|
||||||
|
, <&pro_micro_d 16 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>
|
||||||
|
, <&pro_micro_d 14 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>
|
||||||
|
, <&pro_micro_d 15 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>
|
||||||
|
, <&pro_micro_a 0 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>
|
||||||
|
, <&pro_micro_a 1 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>
|
||||||
|
;
|
||||||
|
col-gpios
|
||||||
|
= <&pro_micro_a 9 GPIO_ACTIVE_HIGH>
|
||||||
|
, <&pro_micro_a 7 GPIO_ACTIVE_HIGH>
|
||||||
|
, <&pro_micro_d 5 GPIO_ACTIVE_HIGH>
|
||||||
|
, <&pro_micro_a 6 GPIO_ACTIVE_HIGH>
|
||||||
|
, <&pro_micro_a 10 GPIO_ACTIVE_HIGH>
|
||||||
|
;
|
||||||
|
};
|
||||||
|
|
||||||
|
encoder_1: encoder_1 {
|
||||||
|
compatible = "alps,ec11";
|
||||||
|
label = "Encoder 1";
|
||||||
|
a-gpios = <&pro_micro_d 8 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>;
|
||||||
|
b-gpios = <&pro_micro_d 7 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>;
|
||||||
|
resolution = <4>;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
encoder_2: encoder_2 {
|
||||||
|
compatible = "alps,ec11";
|
||||||
|
label = "Encoder 2";
|
||||||
|
a-gpios = <&pro_micro_d 1 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>;
|
||||||
|
b-gpios = <&pro_micro_d 0 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>;
|
||||||
|
resolution = <4>;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
&pro_micro_i2c {
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
oled: ssd1306@3c {
|
||||||
|
compatible = "solomon,ssd1306fb";
|
||||||
|
reg = <0x3c>;
|
||||||
|
label = "DISPLAY";
|
||||||
|
width = <128>;
|
||||||
|
height = <32>;
|
||||||
|
segment-offset = <0>;
|
||||||
|
page-offset = <0>;
|
||||||
|
display-offset = <0>;
|
||||||
|
multiplex-ratio = <31>;
|
||||||
|
segment-remap;
|
||||||
|
com-invdir;
|
||||||
|
com-sequential;
|
||||||
|
prechargep = <0x22>;
|
||||||
|
};
|
||||||
|
};
|
Loading…
Add table
Reference in a new issue