zephyr/subsys/dap/Kconfig
Maximilian Deubel 58d9d889aa dap: add support for DAP_INFO string elements
Add support for DAP_INFO string elements.

Signed-off-by: Maximilian Deubel <maximilian.deubel@nordicsemi.no>
2024-06-14 11:14:17 +02:00

56 lines
1.1 KiB
Plaintext

# Copyright (c) 2018-2019 PHYTEC Messtechnik GmbH
# SPDX-License-Identifier: Apache-2.0
menuconfig DAP
bool "Debug Access Port support [EXPERIMENTAL]"
select EXPERIMENTAL
select DP_DRIVER
help
Debug Access Port support (currently CMSIS DAP only)
if DAP
config CMSIS_DAP_PACKET_COUNT
int "Maximum packet buffers for request and response data."
default 4
range 1 255
help
Maximum packet buffers for request and response data.
config CMSIS_DAP_PACKET_SIZE
int "Maximum packet size for request and response data."
default 64
range 64 512
help
Maximum packet size for request and response data.
config CMSIS_DAP_PROBE_VENDOR
string "Probe vendor"
default "Zephyr"
config CMSIS_DAP_PROBE_NAME
string "Probe name"
default "CMSIS-DAP"
config CMSIS_DAP_BOARD_VENDOR
string "Target board vendor"
default ""
config CMSIS_DAP_BOARD_NAME
string "Target board name"
default ""
config CMSIS_DAP_DEVICE_VENDOR
string "Target device vendor"
default ""
config CMSIS_DAP_DEVICE_NAME
string "Target device name"
default ""
module = DAP
module-str = dap
source "subsys/logging/Kconfig.template.log_config"
endif # DAP