mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-27 00:26:16 +00:00
Newly implement socket based communication on eswifi mainly to achive TLS. Tested with Inventek ISM43362-M3G-L44. Signed-off-by: Saravanan Sekar <saravanan@linumiz.com>
19 lines
370 B
CMake
19 lines
370 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if(CONFIG_WIFI_ESWIFI)
|
|
zephyr_include_directories(./)
|
|
|
|
zephyr_library_include_directories(
|
|
# IP headers
|
|
${ZEPHYR_BASE}/subsys/net/ip
|
|
)
|
|
|
|
zephyr_sources(
|
|
eswifi_core.c
|
|
eswifi_bus_spi.c
|
|
eswifi_offload.c
|
|
eswifi_socket.c
|
|
)
|
|
zephyr_sources_ifdef(CONFIG_NET_SOCKETS_OFFLOAD eswifi_socket_offload.c)
|
|
endif()
|