mirror of
https://github.com/espressif/esp-idf.git
synced 2026-09-22 13:01:16 +03:00
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:
@@ -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)
|
||||
|
||||
@@ -884,3 +884,5 @@ menu "Wi-Fi"
|
||||
endif # wifi enabled
|
||||
|
||||
endmenu # Wi-Fi
|
||||
|
||||
rsource "remote/Kconfig.remote"
|
||||
|
||||
2
components/esp_wifi/remote/CMakeLists.txt
Normal file
2
components/esp_wifi/remote/CMakeLists.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
# CMakeLists.txt remote functionality for esp_wifi component
|
||||
return()
|
||||
1
components/esp_wifi/remote/Kconfig.remote
Normal file
1
components/esp_wifi/remote/Kconfig.remote
Normal file
@@ -0,0 +1 @@
|
||||
# Configuration of remote functionality for esp_wifi component
|
||||
3
components/esp_wifi/remote/README.md
Normal file
3
components/esp_wifi/remote/README.md
Normal 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
|
||||
Reference in New Issue
Block a user