1# Copyright (c) 2018-2019 PHYTEC Messtechnik GmbH 2# SPDX-License-Identifier: Apache-2.0 3 4menuconfig DAP 5 bool "Debug Access Port support [EXPERIMENTAL]" 6 select EXPERIMENTAL 7 select DP_DRIVER 8 help 9 Debug Access Port support (currently CMSIS DAP only) 10 11if DAP 12 13config CMSIS_DAP_PACKET_COUNT 14 int "Maximum packet buffers for request and response data." 15 default 4 16 range 1 $(UINT8_MAX) 17 help 18 Maximum packet buffers for request and response data. 19 20config CMSIS_DAP_PACKET_SIZE 21 int "Maximum packet size for request and response data." 22 default 64 23 range 64 512 24 help 25 Maximum packet size for request and response data. 26 27config CMSIS_DAP_PROBE_VENDOR 28 string "Probe vendor" 29 default "Zephyr" 30 31config CMSIS_DAP_PROBE_NAME 32 string "Probe name" 33 default "CMSIS-DAP" 34 35config CMSIS_DAP_BOARD_VENDOR 36 string "Target board vendor" 37 default "" 38 39config CMSIS_DAP_BOARD_NAME 40 string "Target board name" 41 default "" 42 43config CMSIS_DAP_DEVICE_VENDOR 44 string "Target device vendor" 45 default "" 46 47config CMSIS_DAP_DEVICE_NAME 48 string "Target device name" 49 default "" 50 51module = DAP 52module-str = dap 53source "subsys/logging/Kconfig.template.log_config" 54 55endif # DAP 56