mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 23:21:57 +00:00
This adds support for SARA-U2 modems. They have different timings on the PWR_ON pin, don't support AT+CESQ and require a manual GPRS connection setup. The VINT pin is used as a more reliable and faster way to power on the modem. Based on work by Göran Weinholt <goran.weinholt@endian.se> Signed-off-by: Michael Scott <mike@foundries.io>
24 lines
703 B
CMake
24 lines
703 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
zephyr_sources_ifdef(CONFIG_MODEM_RECEIVER modem_receiver.c)
|
|
zephyr_sources_ifdef(CONFIG_MODEM_SHELL modem_shell.c)
|
|
|
|
zephyr_sources_ifdef(CONFIG_MODEM_CONTEXT
|
|
modem_context.c
|
|
modem_pin.c
|
|
)
|
|
|
|
zephyr_sources_ifdef(CONFIG_MODEM_IFACE_UART modem_iface_uart.c)
|
|
zephyr_sources_ifdef(CONFIG_MODEM_CMD_HANDLER modem_cmd_handler.c)
|
|
zephyr_sources_ifdef(CONFIG_MODEM_SOCKET modem_socket.c)
|
|
|
|
if(CONFIG_MODEM_UBLOX_SARA)
|
|
zephyr_library_include_directories(${ZEPHYR_BASE}/subsys/net/ip)
|
|
zephyr_library_sources(ublox-sara-r4.c)
|
|
endif()
|
|
|
|
if(CONFIG_MODEM_WNCM14A2A)
|
|
zephyr_library_include_directories(${ZEPHYR_BASE}/subsys/net/ip)
|
|
zephyr_library_sources(wncm14a2a.c)
|
|
endif()
|