ci(esp_eth): use fixed version of eth_test_app

This commit is contained in:
Ondrej Kosta
2026-08-05 12:00:50 +02:00
parent 2819a3e6f3
commit 5eee23ec49
2 changed files with 1 additions and 16 deletions

View File

@@ -44,23 +44,10 @@ static void cpp_eth_init_internal_emac(void)
#endif // CONFIG_ETH_USE_ESP32_EMAC
#if CONFIG_ETH_USE_SPI_ETHERNET
#include "ethernet_init.h"
static void cpp_eth_spi_custom_driver_config(void) __attribute__((unused));
static void cpp_eth_spi_custom_driver_config(void)
{
volatile eth_spi_custom_driver_config_t cfg = ETH_DEFAULT_SPI;
(void)cfg;
}
static void cpp_eth_init_spi(void) __attribute__((unused));
static void cpp_eth_init_spi(void)
{
esp_eth_handle_t *handles = nullptr;
uint8_t cnt = 0;
(void)ethernet_init_all(&handles, &cnt);
if (handles != nullptr && cnt > 0) {
(void)ethernet_deinit_all(handles);
}
}
#endif // CONFIG_ETH_USE_SPI_ETHERNET

View File

@@ -1,6 +1,4 @@
## IDF Component Manager Manifest File
dependencies:
espressif/ethernet_init:
version: "^1.3.0"
espressif/eth_test_app:
version: "*"
version: "0.4.0"