zephyr/subsys/shell/backends/CMakeLists.txt
Kai Vehmanen 6509b8199b shell: add shell backend for audio DSP using shared memory window
Add a new shell backend implemented over a shared memory window
on the Intel audio DSPs. The implementation uses the Zephyr winstream
to manage the data streaming.

Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
2024-05-31 08:07:03 +02:00

37 lines
550 B
CMake

# SPDX-License-Identifier: Apache-2.0
zephyr_sources_ifdef(
CONFIG_SHELL_BACKEND_SERIAL
shell_uart.c
)
zephyr_sources_ifdef(
CONFIG_SHELL_BACKEND_DUMMY
shell_dummy.c
)
zephyr_sources_ifdef(
CONFIG_SHELL_BACKEND_RTT
shell_rtt.c
)
zephyr_sources_ifdef(
CONFIG_SHELL_BACKEND_TELNET
shell_telnet.c
)
zephyr_sources_ifdef(
CONFIG_SHELL_BACKEND_MQTT
shell_mqtt.c
)
zephyr_sources_ifdef(
CONFIG_SHELL_BACKEND_RPMSG
shell_rpmsg.c
)
zephyr_sources_ifdef(
CONFIG_SHELL_BACKEND_ADSP_MEMORY_WINDOW
shell_adsp_memory_window.c
)