Adds support for the CKP family of boards BT60V2 ANSIHotswap, ISO Hotswap, ANSI Lowpro and soldered BT65 ANSI Hotswap, ISO Hotswap and soldered BT75 ANSI Hotswap and soldered The BT65 and BT75 are stylised as btXX_v1 in order to maintain compatibility with customers existing zmk-config setups in the same way the BT60 V1 was handled when merged into main. CKP boards have identical pinmapping between hotswap and soldered so there's only one set of defconfig, dts, keymap, yaml and yml files per size
34 lines
631 B
Text
34 lines
631 B
Text
# Copyright (c) 2022 The ZMK Contributors
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
config BOARD
|
|
default "bt60_v2" if BOARD_BT60_V2
|
|
default "bt65_v1" if BOARD_BT65_V1
|
|
default "bt75_v1" if BOARD_BT75_V1
|
|
config ZMK_KEYBOARD_NAME
|
|
default "BT60 V2" if BOARD_BT60_V2
|
|
default "BT65" if BOARD_BT65_V1
|
|
default "BT75" if BOARD_BT75_V1
|
|
|
|
if BOARD_BT60_V2 || BOARD_BT65_V1 || BOARD_BT75_V1
|
|
|
|
if USB
|
|
|
|
config USB_NRFX
|
|
default y
|
|
|
|
config USB_DEVICE_STACK
|
|
default y
|
|
|
|
endif # USB
|
|
|
|
config BT_CTLR
|
|
default BT
|
|
|
|
config ZMK_BLE
|
|
default y
|
|
|
|
config ZMK_USB
|
|
default y
|
|
|
|
endif # BOARD_BT60_V2 || BOARD_BT65_V1 || BOARD_BT75_V1
|