mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-06 04:36:06 +00:00
Implement the HDLC over SPI adapter driver to support the Openthread RCP with SPI communication. Signed-off-by: Pieter De Gendt <pieter.degendt@basalte.be>
33 lines
869 B
Plaintext
33 lines
869 B
Plaintext
# 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
|
|
select EVENTS
|
|
|
|
if HDLC_RCP_IF
|
|
|
|
source "drivers/hdlc_rcp_if/Kconfig.nxp"
|
|
source "drivers/hdlc_rcp_if/Kconfig.spi"
|
|
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
|