From 972158181d33b268c2e5ec4860742dcbfe4f0e5c Mon Sep 17 00:00:00 2001 From: Pete Johanson Date: Tue, 10 Nov 2020 11:20:17 -0500 Subject: fix(shields): Replace Corne w/ Microdox. --- app/boards/shields/microdox/microdox.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app') diff --git a/app/boards/shields/microdox/microdox.conf b/app/boards/shields/microdox/microdox.conf index b79385b..253c94e 100644 --- a/app/boards/shields/microdox/microdox.conf +++ b/app/boards/shields/microdox/microdox.conf @@ -1,6 +1,6 @@ -# Uncomment the following lines to enable the Corne RGB Underglow +# Uncomment the following lines to enable the Microdox RGB Underglow # ZMK_RGB_UNDERGLOW=y # CONFIG_WS2812_STRIP=y -# Uncomment the following line to enable the Corne OLED Display +# Uncomment the following line to enable the Microdox OLED Display # CONFIG_ZMK_DISPLAY=y -- cgit v1.2.3 From 348a44a8a387e38922e7e275b1ba9af790648016 Mon Sep 17 00:00:00 2001 From: innovaker <66737976+innovaker@users.noreply.github.com> Date: Sun, 8 Nov 2020 11:37:18 +0000 Subject: refactor(app): Remove obsolete include's of `hid_usage_pages.h` This should've been done in eff1b8223b5010d526914530c5d1d469eff356df. --- app/dts/behaviors/key_press.dtsi | 2 -- app/dts/behaviors/sensor_rotate_key_press.dtsi | 2 -- app/src/hid.c | 1 - 3 files changed, 5 deletions(-) (limited to 'app') diff --git a/app/dts/behaviors/key_press.dtsi b/app/dts/behaviors/key_press.dtsi index 77050aa..e066832 100644 --- a/app/dts/behaviors/key_press.dtsi +++ b/app/dts/behaviors/key_press.dtsi @@ -1,6 +1,4 @@ -#include - / { behaviors { /* DEPRECATED: `cp` will be removed in the future */ diff --git a/app/dts/behaviors/sensor_rotate_key_press.dtsi b/app/dts/behaviors/sensor_rotate_key_press.dtsi index 5433994..d06eca2 100644 --- a/app/dts/behaviors/sensor_rotate_key_press.dtsi +++ b/app/dts/behaviors/sensor_rotate_key_press.dtsi @@ -1,6 +1,4 @@ -#include - / { behaviors { /* DEPRECATED: `inc_dec_cp` will be removed in the future */ diff --git a/app/src/hid.c b/app/src/hid.c index 7e733d9..b84a693 100644 --- a/app/src/hid.c +++ b/app/src/hid.c @@ -9,7 +9,6 @@ LOG_MODULE_DECLARE(zmk, CONFIG_ZMK_LOG_LEVEL); #include #include -#include static struct zmk_hid_keypad_report kp_report = { .report_id = 1, .body = {.modifiers = 0, ._reserved = 0, .keys = {0}}}; -- cgit v1.2.3