forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig
30 lines (22 loc) · 813 Bytes
/
Kconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Configuration options for HDLC RCP communication Interface
# Copyright (c) 2024 NXP
# SPDX-License-Identifier: Apache-2.0
#
# HDLC communication Interface used by Zephyr running Openthread RCP host
#
menuconfig HDLC_RCP_IF
bool "HDLC interface for a Zephyr Openthread RCP host"
depends on NET_L2_OPENTHREAD && !OPENTHREAD_COPROCESSOR
if HDLC_RCP_IF
source "drivers/hdlc_rcp_if/Kconfig.nxp"
source "drivers/hdlc_rcp_if/Kconfig.uart"
config HDLC_RCP_IF_DRV_NAME
string "HDLC RCP Interface Driver's name"
default "hdlc_rcp_if"
help
This option sets the driver name
module = HDLC_RCP_IF_DRIVER
module-str = HDLC driver for Openthread RCP host
module-help = Sets log level for Openthread HDLC RCP host interface Device Drivers.
source "subsys/logging/Kconfig.template.log_config"
endif # HDLC_RCP_IF