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