zephyr/subsys/shell/Kconfig.backends
Jakub Rzeszutko 7e3a6e85d3 doc: shell: add information about dummy backend
Shell documentation has been updated with information about new
backend called DUMMY.

Signed-off-by: Jakub Rzeszutko <jakub.rzeszutko@nordicsemi.no>
2018-10-28 11:45:41 -04:00

31 lines
589 B
Plaintext

# Kconfig.backends - Shell badckends configuration options
#
# Copyright (c) 2018 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: Apache-2.0
#
menuconfig SHELL_BACKENDS
bool "Enable shell backends"
default y
help
Enable shell backends.
if SHELL_BACKENDS
config SHELL_BACKEND_SERIAL
bool "Enable serial backends."
default y
select SERIAL
help
Enable serial backends.
config SHELL_BACKEND_DUMMY
bool "Enable dummy backend."
help
Enable dummy backend which can be used to execute commands with no
need for physical transport interface.
endif # SHELL_BACKENDS