zephyr/subsys/modem/CMakeLists.txt
Bjarki Arge Andreasen 1f7d0b6cb0 modem: add modem_pipelink module
Add modem pipelink module which exposes modem pipes globally.
The pipelink module implements a callback to inform when a
pipe becomes available to use by whichever modem is attached
to it. This could be a shell, or a network interface.

The module aims to allow modem drivers to be split into modules,
and allowing applications to implement their own custom logic
without altering the modem drivers.

Signed-off-by: Bjarki Arge Andreasen <bjarki@arge-andreasen.me>
2024-06-10 15:12:34 -05:00

19 lines
596 B
CMake

# Copyright (c) 2023 Trackunit Corporation
# SPDX-License-Identifier: Apache-2.0
if(CONFIG_MODEM_MODULES)
zephyr_library()
zephyr_library_sources_ifdef(CONFIG_MODEM_CHAT modem_chat.c)
zephyr_library_sources_ifdef(CONFIG_MODEM_CMUX modem_cmux.c)
zephyr_library_sources_ifdef(CONFIG_MODEM_PIPE modem_pipe.c)
zephyr_library_sources_ifdef(CONFIG_MODEM_PIPELINK modem_pipelink.c)
zephyr_library_sources_ifdef(CONFIG_MODEM_PPP modem_ppp.c)
zephyr_library_sources_ifdef(CONFIG_MODEM_STATS modem_stats.c)
zephyr_library_sources_ifdef(CONFIG_MODEM_UBX modem_ubx.c)
add_subdirectory(backends)
endif()