summaryrefslogtreecommitdiff
path: root/app/boards
diff options
context:
space:
mode:
authorPete Johanson <peter@peterjohanson.com>2021-03-18 21:26:41 -0400
committerPete Johanson <peter@peterjohanson.com>2021-03-18 21:26:41 -0400
commit28d454655b89f127a65b14381ba4b796db6c3c7a (patch)
treeaf01428f46f9ea58cbee2dd3281db7417112d9a1 /app/boards
parent27c89e69c15def0d9d4fe742912a062b3783b463 (diff)
fix(boards): Move board endif to proper location.
* Nibble and tidbit conditional was closed early, enabling some settings incorrectly for other unrelated builds.
Diffstat (limited to 'app/boards')
-rw-r--r--app/boards/shields/nibble/Kconfig.defconfig3
-rw-r--r--app/boards/shields/tidbit/Kconfig.defconfig3
2 files changed, 4 insertions, 2 deletions
diff --git a/app/boards/shields/nibble/Kconfig.defconfig b/app/boards/shields/nibble/Kconfig.defconfig
index 22ef1c6..2df1d81 100644
--- a/app/boards/shields/nibble/Kconfig.defconfig
+++ b/app/boards/shields/nibble/Kconfig.defconfig
@@ -9,7 +9,6 @@ config ZMK_KEYBOARD_NAME
config ZMK_USB
default y
-endif
if ZMK_DISPLAY
@@ -46,3 +45,5 @@ choice LVGL_COLOR_DEPTH
endchoice
endif # LVGL
+
+endif
diff --git a/app/boards/shields/tidbit/Kconfig.defconfig b/app/boards/shields/tidbit/Kconfig.defconfig
index 30cf3c2..177e267 100644
--- a/app/boards/shields/tidbit/Kconfig.defconfig
+++ b/app/boards/shields/tidbit/Kconfig.defconfig
@@ -6,7 +6,6 @@ if SHIELD_TIDBIT
config ZMK_KEYBOARD_NAME
default "tidbit"
-endif
if ZMK_DISPLAY
@@ -43,3 +42,5 @@ choice LVGL_COLOR_DEPTH
endchoice
endif # LVGL
+
+endif