zephyr/drivers/debug/Kconfig
Aksel Skauge Mellbye 856341e175 drivers: debug: silabs_pti: Add driver for Packet Trace Interface
The Packet Trace Interface is a debug interface that emits TX and RX packet
data over a serial connection in real time.

Signed-off-by: Aksel Skauge Mellbye <aksel.mellbye@silabs.com>
2025-06-13 11:12:20 +02:00

25 lines
542 B
Text

# Copyright (c) 2025 Silicon Laboratories Inc.
# SPDX-License-Identifier: Apache-2.0
menuconfig DEBUG_DRIVER
bool "Debug drivers"
help
Enable support for debug drivers
if DEBUG_DRIVER
config DEBUG_DRIVER_INIT_PRIORITY
int "Initialization priority"
default KERNEL_INIT_PRIORITY_DEVICE
help
Debug drivers initialization priority.
# zephyr-keep-sorted-start
source "drivers/debug/Kconfig.silabs"
# zephyr-keep-sorted-stop
module = DEBUG_DRIVER
module-str = debug_driver
source "subsys/logging/Kconfig.template.log_config"
endif