#
# Copyright (c) 2022 Nordic Semiconductor
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#

source "Kconfig.zephyr"

menu "Nordic Remote Shell sample"

config REMOTE_SHELL_TX_RING_BUFFER_SIZE
	int "Set TX ring buffer size"
	default 64
	help
	  If UART is utilizing DMA transfers then increasing ring buffer size
	  increases transfers length and reduces number of interrupts. It is used
	  to collect data from transport medium and passing it to remote shell.

config REMOTE_SHELL_RX_RING_BUFFER_SIZE
	int "Set RX ring buffer size"
	default 64
	help
	  RX ring buffer size, used to collect data received from remote shell and passing
	  them to chosen transport medium.

endmenu
