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_PROBE_VENDOR
21	string "Probe vendor"
22	default "Zephyr"
23
24config CMSIS_DAP_PROBE_NAME
25	string "Probe name"
26	default "CMSIS-DAP"
27
28config CMSIS_DAP_BOARD_VENDOR
29	string "Target board vendor"
30	default ""
31
32config CMSIS_DAP_BOARD_NAME
33	string "Target board name"
34	default ""
35
36config CMSIS_DAP_DEVICE_VENDOR
37	string "Target device vendor"
38	default ""
39
40config CMSIS_DAP_DEVICE_NAME
41	string "Target device name"
42	default ""
43
44config DAP_BACKEND_USB
45	bool "USB backend"
46	depends on USB_DEVICE_STACK_NEXT
47	help
48	  DAP USB backend using bulk endpoints.
49
50module = DAP
51module-str = dap
52source "subsys/logging/Kconfig.template.log_config"
53
54endif # DAP
55