feat(wifi_remote): Move to esp-protocols

This commit is contained in:
Yogesh Mantri
2024-01-02 17:09:37 +08:00
committed by David Cermak
parent 943b683d38
commit edc3c2dee0
16 changed files with 577 additions and 214 deletions

View File

@@ -0,0 +1,8 @@
if(NOT CONFIG_ESP_WIFI_ENABLED)
set(src_wifi_is_remote esp_wifi_remote.c)
endif()
idf_component_register(INCLUDE_DIRS include
SRCS wifi_remote_rpc.c wifi_remote_net.c wifi_remote_init.c ${src_wifi_is_remote}
REQUIRES esp_event esp_netif
PRIV_REQUIRES esp_wifi esp_hosted)