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

This commit is contained in:
David Cermak
2025-01-24 16:31:12 +01:00
parent e65c9a52e8
commit 9aad15daaa
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