1# Copyright (c) 2019 Phytec Messtechnik GmbH 2# 3# SPDX-License-Identifier: Apache-2.0 4 5menuconfig DP_DRIVER 6 bool "Debug Port interface driver [EXPERIMENTAL]" 7 select EXPERIMENTAL 8 help 9 Enable Debug Port interface driver 10 11if DP_DRIVER 12 13module = DP_DRIVER 14module-str = dp drv 15source "subsys/logging/Kconfig.template.log_config" 16 17config DP_DRIVER_INIT_PRIO 18 int "Debug Port driver initialization priority" 19 default 80 20 help 21 Set the initialization priority number. 22 23config SWDP_BITBANG_DRIVER 24 bool "Serial Wire Debug Port bit-bang driver" 25 default y 26 depends on DT_HAS_ZEPHYR_SWDP_GPIO_ENABLED 27 depends on GPIO 28 help 29 Serial Wire Debug Port bit-bang driver. 30 31endif # DP_DRIVER 32