summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPete Johanson <peter@peterjohanson.com>2020-12-17 00:19:03 -0500
committerPete Johanson <peter@peterjohanson.com>2020-12-28 10:16:24 -0500
commit4fc17e0b3a32096923790f28226a15beffacc686 (patch)
tree7003a6c0155fde69ea122d66852b3eba04f098a1
parent4db5b169bff1f3de5353324baef5724be4f9a6a5 (diff)
fix(shields): Enable USB by default on right side.
* Ensures USB power detection for sleep/charging is properly detected on the right side by deafult.
-rw-r--r--app/boards/shields/corne/Kconfig.defconfig3
-rw-r--r--app/boards/shields/cradio/Kconfig.defconfig3
-rw-r--r--app/boards/shields/iris/Kconfig.defconfig3
-rw-r--r--app/boards/shields/jian/Kconfig.defconfig3
-rw-r--r--app/boards/shields/jorne/Kconfig.defconfig3
-rw-r--r--app/boards/shields/kyria/Kconfig.defconfig3
-rw-r--r--app/boards/shields/lily58/Kconfig.defconfig3
-rw-r--r--app/boards/shields/microdox/Kconfig.defconfig3
-rw-r--r--app/boards/shields/quefrency/Kconfig.defconfig3
-rw-r--r--app/boards/shields/sofle/Kconfig.defconfig4
-rw-r--r--app/boards/shields/splitreus62/Kconfig.defconfig3
11 files changed, 34 insertions, 0 deletions
diff --git a/app/boards/shields/corne/Kconfig.defconfig b/app/boards/shields/corne/Kconfig.defconfig
index 9e33e08..6cf60b1 100644
--- a/app/boards/shields/corne/Kconfig.defconfig
+++ b/app/boards/shields/corne/Kconfig.defconfig
@@ -13,6 +13,9 @@ if SHIELD_CORNE_RIGHT
config ZMK_KEYBOARD_NAME
default "Corne Right"
+config USB
+ default y
+
endif
if SHIELD_CORNE_LEFT || SHIELD_CORNE_RIGHT
diff --git a/app/boards/shields/cradio/Kconfig.defconfig b/app/boards/shields/cradio/Kconfig.defconfig
index 5e826bf..25bb433 100644
--- a/app/boards/shields/cradio/Kconfig.defconfig
+++ b/app/boards/shields/cradio/Kconfig.defconfig
@@ -16,6 +16,9 @@ if SHIELD_CRADIO_RIGHT
config ZMK_KEYBOARD_NAME
default "cradio right"
+config USB
+ default y
+
endif
if SHIELD_CRADIO_LEFT || SHIELD_CRADIO_RIGHT
diff --git a/app/boards/shields/iris/Kconfig.defconfig b/app/boards/shields/iris/Kconfig.defconfig
index 57b8c1e..a43c007 100644
--- a/app/boards/shields/iris/Kconfig.defconfig
+++ b/app/boards/shields/iris/Kconfig.defconfig
@@ -16,6 +16,9 @@ if SHIELD_IRIS_RIGHT
config ZMK_KEYBOARD_NAME
default "Iris Right"
+config USB
+ default y
+
endif
if SHIELD_IRIS_LEFT || SHIELD_IRIS_RIGHT
diff --git a/app/boards/shields/jian/Kconfig.defconfig b/app/boards/shields/jian/Kconfig.defconfig
index 9e1da62..07023a2 100644
--- a/app/boards/shields/jian/Kconfig.defconfig
+++ b/app/boards/shields/jian/Kconfig.defconfig
@@ -15,6 +15,9 @@ if SHIELD_JIAN_RIGHT
config ZMK_KEYBOARD_NAME
default "Jian Right"
+config USB
+ default y
+
endif
if SHIELD_JIAN_LEFT || SHIELD_JIAN_RIGHT
diff --git a/app/boards/shields/jorne/Kconfig.defconfig b/app/boards/shields/jorne/Kconfig.defconfig
index 5b0e0b9..18dcabe 100644
--- a/app/boards/shields/jorne/Kconfig.defconfig
+++ b/app/boards/shields/jorne/Kconfig.defconfig
@@ -15,6 +15,9 @@ if SHIELD_JORNE_RIGHT
config ZMK_KEYBOARD_NAME
default "Jorne Right"
+config USB
+ default y
+
endif
if SHIELD_JORNE_LEFT || SHIELD_JORNE_RIGHT
diff --git a/app/boards/shields/kyria/Kconfig.defconfig b/app/boards/shields/kyria/Kconfig.defconfig
index 99e47bf..d0c1710 100644
--- a/app/boards/shields/kyria/Kconfig.defconfig
+++ b/app/boards/shields/kyria/Kconfig.defconfig
@@ -15,6 +15,9 @@ if SHIELD_KYRIA_RIGHT
config ZMK_KEYBOARD_NAME
default "Kyria Right"
+config USB
+ default y
+
endif
if SHIELD_KYRIA_LEFT || SHIELD_KYRIA_RIGHT
diff --git a/app/boards/shields/lily58/Kconfig.defconfig b/app/boards/shields/lily58/Kconfig.defconfig
index 915cc70..ebcfa7b 100644
--- a/app/boards/shields/lily58/Kconfig.defconfig
+++ b/app/boards/shields/lily58/Kconfig.defconfig
@@ -14,6 +14,9 @@ if SHIELD_LILY58_RIGHT
config ZMK_KEYBOARD_NAME
default "Lily58 Right"
+config USB
+ default y
+
endif
if SHIELD_LILY58_LEFT || SHIELD_LILY58_RIGHT
diff --git a/app/boards/shields/microdox/Kconfig.defconfig b/app/boards/shields/microdox/Kconfig.defconfig
index be39c9f..0afd749 100644
--- a/app/boards/shields/microdox/Kconfig.defconfig
+++ b/app/boards/shields/microdox/Kconfig.defconfig
@@ -17,6 +17,9 @@ if SHIELD_MICRODOX_RIGHT
config ZMK_KEYBOARD_NAME
default "Microdox Right"
+config USB
+ default y
+
endif
if SHIELD_MICRODOX_LEFT || SHIELD_MICRODOX_RIGHT
diff --git a/app/boards/shields/quefrency/Kconfig.defconfig b/app/boards/shields/quefrency/Kconfig.defconfig
index 9c7e8b1..b4041cb 100644
--- a/app/boards/shields/quefrency/Kconfig.defconfig
+++ b/app/boards/shields/quefrency/Kconfig.defconfig
@@ -17,6 +17,9 @@ if SHIELD_QUEFRENCY_RIGHT
config ZMK_KEYBOARD_NAME
default "Quefrency Right"
+config USB
+ default y
+
endif
if SHIELD_QUEFRENCY_LEFT || SHIELD_QUEFRENCY_RIGHT
diff --git a/app/boards/shields/sofle/Kconfig.defconfig b/app/boards/shields/sofle/Kconfig.defconfig
index cde094a..765afea 100644
--- a/app/boards/shields/sofle/Kconfig.defconfig
+++ b/app/boards/shields/sofle/Kconfig.defconfig
@@ -15,6 +15,10 @@ if SHIELD_SOFLE_RIGHT
config ZMK_KEYBOARD_NAME
default "Sofle Right"
+
+config USB
+ default y
+
endif
if SHIELD_SOFLE_LEFT || SHIELD_SOFLE_RIGHT
diff --git a/app/boards/shields/splitreus62/Kconfig.defconfig b/app/boards/shields/splitreus62/Kconfig.defconfig
index 06ac131..988041c 100644
--- a/app/boards/shields/splitreus62/Kconfig.defconfig
+++ b/app/boards/shields/splitreus62/Kconfig.defconfig
@@ -18,6 +18,9 @@ if SHIELD_SPLITREUS62_RIGHT
config ZMK_KEYBOARD_NAME
default "Splitreus62 Right"
+config USB
+ default y
+
endif
if SHIELD_SPLITREUS62_LEFT || SHIELD_SPLITREUS62_RIGHT