You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
682 B
31 lines
682 B
# 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
|
|
|