mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/fix_pre_encrypted_ota_pytest_example' into 'master'
ci: Fix pre_encrypted_ota pytest example Closes IDFCI-1295 See merge request espressif/esp-idf!18454
This commit is contained in:
commit
d5a9f67ce9
@ -100,6 +100,12 @@ menu "Example Connection Configuration"
|
|||||||
Choose this option to connect with Ethernet
|
Choose this option to connect with Ethernet
|
||||||
|
|
||||||
if EXAMPLE_CONNECT_ETHERNET
|
if EXAMPLE_CONNECT_ETHERNET
|
||||||
|
config EXAMPLE_ETHERNET_EMAC_TASK_STACK_SIZE
|
||||||
|
int "emac_rx task stack size"
|
||||||
|
default 2048
|
||||||
|
help
|
||||||
|
This set stack size for emac_rx task
|
||||||
|
|
||||||
config EXAMPLE_USE_SPI_ETHERNET
|
config EXAMPLE_USE_SPI_ETHERNET
|
||||||
bool
|
bool
|
||||||
|
|
||||||
|
@ -375,6 +375,7 @@ static esp_netif_t *eth_start(void)
|
|||||||
free(desc);
|
free(desc);
|
||||||
|
|
||||||
eth_mac_config_t mac_config = ETH_MAC_DEFAULT_CONFIG();
|
eth_mac_config_t mac_config = ETH_MAC_DEFAULT_CONFIG();
|
||||||
|
mac_config.rx_task_stack_size = CONFIG_EXAMPLE_ETHERNET_EMAC_TASK_STACK_SIZE;
|
||||||
eth_phy_config_t phy_config = ETH_PHY_DEFAULT_CONFIG();
|
eth_phy_config_t phy_config = ETH_PHY_DEFAULT_CONFIG();
|
||||||
phy_config.phy_addr = CONFIG_EXAMPLE_ETH_PHY_ADDR;
|
phy_config.phy_addr = CONFIG_EXAMPLE_ETH_PHY_ADDR;
|
||||||
phy_config.reset_gpio_num = CONFIG_EXAMPLE_ETH_PHY_RST_GPIO;
|
phy_config.reset_gpio_num = CONFIG_EXAMPLE_ETH_PHY_RST_GPIO;
|
||||||
|
@ -15,3 +15,4 @@ CONFIG_EXAMPLE_ETH_MDIO_GPIO=18
|
|||||||
CONFIG_EXAMPLE_ETH_PHY_RST_GPIO=5
|
CONFIG_EXAMPLE_ETH_PHY_RST_GPIO=5
|
||||||
CONFIG_EXAMPLE_ETH_PHY_ADDR=1
|
CONFIG_EXAMPLE_ETH_PHY_ADDR=1
|
||||||
CONFIG_EXAMPLE_CONNECT_IPV6=y
|
CONFIG_EXAMPLE_CONNECT_IPV6=y
|
||||||
|
CONFIG_EXAMPLE_ETHERNET_EMAC_TASK_STACK_SIZE=3072
|
||||||
|
Loading…
x
Reference in New Issue
Block a user