32 lines
682 B
Plaintext
32 lines
682 B
Plaintext
# Copyright (c) 2019 Phytec Messtechnik GmbH
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig DP_DRIVER
|
|
bool "Debug Port interface driver [EXPERIMENTAL]"
|
|
select EXPERIMENTAL
|
|
help
|
|
Enable Debug Port interface driver
|
|
|
|
if DP_DRIVER
|
|
|
|
module = DP_DRIVER
|
|
module-str = dp drv
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
config DP_DRIVER_INIT_PRIO
|
|
int "Debug Port driver initialization priority"
|
|
default 80
|
|
help
|
|
Set the initialization priority number.
|
|
|
|
config SWDP_BITBANG_DRIVER
|
|
bool "Serial Wire Debug Port bit-bang driver"
|
|
default y
|
|
depends on DT_HAS_ZEPHYR_SWDP_GPIO_ENABLED
|
|
depends on GPIO
|
|
help
|
|
Serial Wire Debug Port bit-bang driver.
|
|
|
|
endif # DP_DRIVER
|