mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-05 03:45:20 +00:00
Remove all USB and CDC ACM configuration in favor of common configuraiton. Do not adapt board-specific configurations such as unknown PID/VID or string descriptors. There is no justification for using them on specific boards, and we do not have formal approval to use them in the project tree. Also, we need more uniform configuration, since the main reason for enabling CDC ACM here is to allow users to run examples like hello_world right out of the box. Of course, anyone is free to customize these settings in their fork or downstream project. Signed-off-by: Johann Fischer <johann.fischer@nordicsemi.no>
26 lines
418 B
Plaintext
26 lines
418 B
Plaintext
# SENSORTILE_BOX_PRO board configuration
|
|
|
|
# Copyright (c) 2023 STMicroelectronics
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if BOARD_SENSORTILE_BOX_PRO
|
|
|
|
if BT
|
|
|
|
config BT_BLUENRG_ACI
|
|
default y
|
|
|
|
# Disable Flow control
|
|
config BT_HCI_ACL_FLOW_CONTROL
|
|
default n
|
|
|
|
endif # BT
|
|
|
|
config SPI_STM32_INTERRUPT
|
|
default y
|
|
depends on SPI
|
|
|
|
source "boards/common/usb/Kconfig.cdc_acm_serial.defconfig"
|
|
|
|
endif # BOARD_SENSORTILE_BOX_PRO
|