2019-04-06 21:08:09 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2018-08-02 04:01:00 +08:00
|
|
|
zephyr_sources_ifdef(CONFIG_MODEM_RECEIVER modem_receiver.c)
|
2018-08-02 04:03:00 +08:00
|
|
|
zephyr_sources_ifdef(CONFIG_MODEM_SHELL modem_shell.c)
|
2019-02-19 18:17:51 +08:00
|
|
|
|
2019-08-07 23:01:00 +08:00
|
|
|
zephyr_sources_ifdef(CONFIG_MODEM_CONTEXT
|
|
|
|
modem_context.c
|
|
|
|
modem_pin.c
|
|
|
|
)
|
|
|
|
|
2019-05-18 01:14:00 +08:00
|
|
|
if(CONFIG_MODEM_UBLOX_SARA_R4)
|
|
|
|
zephyr_library_include_directories(${ZEPHYR_BASE}/subsys/net/ip)
|
|
|
|
zephyr_library_sources(ublox-sara-r4.c)
|
|
|
|
endif()
|
|
|
|
|
2019-02-19 18:17:51 +08:00
|
|
|
if(CONFIG_MODEM_WNCM14A2A)
|
|
|
|
zephyr_library_include_directories(${ZEPHYR_BASE}/subsys/net/ip)
|
|
|
|
zephyr_library_sources(wncm14a2a.c)
|
|
|
|
endif()
|