Merge branch 'feat/network_codeowner_update' into 'master'

fix(owners): Add esp_wifi's remote feature to be owned by network team

See merge request espressif/esp-idf!45610
This commit is contained in:
David Čermák
2026-02-16 16:58:40 +08:00
8 changed files with 15 additions and 10 deletions

View File

@@ -1,7 +1,9 @@
idf_build_get_property(idf_target IDF_TARGET)
if(${idf_target} STREQUAL "linux")
return() # This component is not supported by the POSIX/Linux simulator
idf_component_register() # Register empty component for first CMake pass for potential *Remote* functionality
add_subdirectory(remote) # wifi-remote on linux host
return() # *Local* esp-wifi component is not supported by the POSIX/Linux simulator
endif()
if( NOT CONFIG_ESP_WIFI_ENABLED
@@ -17,6 +19,7 @@ if( NOT CONFIG_ESP_WIFI_ENABLED
# (implementation supported optionally in a managed component esp_wifi_remote)
idf_component_register(SRCS "${srcs}"
INCLUDE_DIRS "include" "wifi_apps/nan_app/include")
add_subdirectory(remote) # wifi-remote on esp32p4/h2 (no wifi)
return()
endif()
@@ -113,3 +116,5 @@ endif()
if(CONFIG_SPIRAM)
idf_component_optional_requires(PRIVATE esp_psram)
endif()
add_subdirectory(remote) # wifi-remote as a secondary wifi interface (on wifi targets)

View File

@@ -884,3 +884,5 @@ menu "Wi-Fi"
endif # wifi enabled
endmenu # Wi-Fi
rsource "remote/Kconfig.remote"

View File

@@ -0,0 +1,2 @@
# CMakeLists.txt remote functionality for esp_wifi component
return()

View File

@@ -0,0 +1 @@
# Configuration of remote functionality for esp_wifi component

View File

@@ -0,0 +1,3 @@
Placeholder for "remote" functionality of esp_wifi component.
This functionality is currently provided by a standalone component "esp_wifi_remote" -- an external component developed in https://github.com/espressif/esp-wifi-remote repository