2025-04-16 11:46:37 +02:00
|
|
|
# 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
|
2025-04-16 11:50:56 +02:00
|
|
|
source "drivers/debug/Kconfig.silabs"
|
2025-04-16 11:46:37 +02:00
|
|
|
# zephyr-keep-sorted-stop
|
|
|
|
|
|
|
|
module = DEBUG_DRIVER
|
|
|
|
module-str = debug_driver
|
|
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
|
|
|
|
endif
|