A Kconfig option was defined in the Kconfig.defconfig file. Move it to the board Kconfig file since definitions are not allowed in defconfig files, just change default values. Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
16 lines
426 B
Text
16 lines
426 B
Text
# BL654 USB adapter board configuration
|
|
|
|
# Copyright (c) 2021 Laird Connectivity
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config BOARD_ENABLE_DCDC
|
|
bool "Enable DCDC mode"
|
|
select SOC_DCDC_NRF52X
|
|
default y
|
|
depends on BOARD_BL654_USB
|
|
|
|
config BL654_USB_SERIAL_BACKEND_CDCACM
|
|
bool "Use CDC ACM UART as backend for BL654 USB adapter"
|
|
default y if !USB_DEVICE_BLUETOOTH
|
|
help
|
|
Use CDC ACM UART as backend for console or shell.
|