* Previous version of multiple overrides of the default value of ZMK_USB were problematic. Move to using board _defconfig files for the defaults for those, along with proper `depends on` for ZMK_USB that accounts for split and split roles.
22 lines
300 B
Text
22 lines
300 B
Text
# Copyright (c) 2022 The ZMK Contributors
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
if BOARD_PUCHI_BLE_v1
|
|
|
|
config BOARD
|
|
default "puchi_ble"
|
|
|
|
if USB_DEVICE_STACK
|
|
|
|
config USB_NRFX
|
|
default y
|
|
|
|
endif # USB_DEVICE_STACK
|
|
|
|
config BT_CTLR
|
|
default BT
|
|
|
|
config PINMUX
|
|
default y
|
|
|
|
endif # BOARD_PUCHI_BLE_v1
|