-
Notifications
You must be signed in to change notification settings - Fork 7.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feat/esp_netif_custom_impl' into 'master'
feat(esp_netif): Add support for esp_netif with custom TCP/IP stack Closes IDF-6375 See merge request espressif/esp-idf!31593
- Loading branch information
Showing
11 changed files
with
725 additions
and
558 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 11 additions & 5 deletions
16
components/esp_netif/test_apps/test_app_esp_netif/main/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
idf_component_register(SRCS "esp_netif_test.c" | ||
REQUIRES test_utils | ||
INCLUDE_DIRS "." | ||
PRIV_INCLUDE_DIRS "$ENV{IDF_PATH}/components/esp_netif/private_include" "." | ||
PRIV_REQUIRES unity esp_netif nvs_flash esp_wifi) | ||
if(CONFIG_ESP_NETIF_TCPIP_LWIP) | ||
set(srcs_test_stack esp_netif_test_lwip.c) | ||
elseif(CONFIG_ESP_NETIF_LOOPBACK) | ||
set(srcs_test_stack esp_netif_test_loopback.c) | ||
endif() | ||
|
||
idf_component_register(SRCS esp_netif_test.c ${srcs_test_stack} | ||
REQUIRES test_utils | ||
INCLUDE_DIRS "." | ||
PRIV_INCLUDE_DIRS "$ENV{IDF_PATH}/components/esp_netif/private_include" "." | ||
PRIV_REQUIRES unity esp_netif nvs_flash esp_wifi) |
Oops, something went wrong.