From 9917e2f1371d5bb051bf8eb782c1297db41d742b Mon Sep 17 00:00:00 2001 From: Pete Johanson Date: Wed, 20 May 2026 16:06:52 -0600 Subject: [PATCH] fix(boards): Adjust defconfig check for Planck with HWMv2 changes (#3357) Since we're now properly versionining our in-tree boards, adjust the defconfig checks for the Planck to ensure matrix polling is properly defaulted on. --- app/boards/olkb/planck/Kconfig.defconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/boards/olkb/planck/Kconfig.defconfig b/app/boards/olkb/planck/Kconfig.defconfig index 69dea84c..d588982e 100644 --- a/app/boards/olkb/planck/Kconfig.defconfig +++ b/app/boards/olkb/planck/Kconfig.defconfig @@ -3,7 +3,7 @@ # Copyright (c) 2020 The ZMK Contributors # SPDX-License-Identifier: MIT -if BOARD_PLANCK_REV6 +if BOARD_PLANCK config ZMK_KEYBOARD_NAME default "Planck V6" @@ -11,4 +11,4 @@ config ZMK_KEYBOARD_NAME config ZMK_KSCAN_MATRIX_POLLING default y -endif # BOARD_PLANCK_REV6 +endif # BOARD_PLANCK