Merge branch 'fix/bridge_wifi' into 'master'

fix(network/examples): Fix bridge example with eth-wifi config

See merge request espressif/esp-idf!36628
This commit is contained in:
David Čermák
2025-01-29 23:16:09 +08:00
2 changed files with 10 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
idf_component_register(SRCS "bridge_example_main.c"
"bridge_console_cmd.c"
PRIV_REQUIRES esp_eth console esp_netif esp_wifi
PRIV_REQUIRES esp_eth console esp_netif esp_wifi nvs_flash
INCLUDE_DIRS ".")

View File

@@ -0,0 +1,9 @@
# This config checks the bridge example with eth-wifi configuration
# (only for one target to save CI time)
CONFIG_IDF_TARGET="esp32c3"
CONFIG_ESP_NETIF_TCPIP_LWIP=y
CONFIG_ESP_NETIF_BRIDGE_EN=y
CONFIG_EXAMPLE_BR_DHCPS=y
CONFIG_EXAMPLE_BR_WIFI=y
CONFIG_EXAMPLE_USE_SPI_ETHERNET=y
CONFIG_LWIP_NUM_NETIF_CLIENT_DATA=1