zephyr/subsys/dap/Kconfig

32 lines
711 B
Plaintext
Raw Normal View History

# 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.
module = DAP
module-str = dap
source "subsys/logging/Kconfig.template.log_config"
endif # DAP