From 7e481c02a3e5e0b39cb8a8537ed5bf0cab240132 Mon Sep 17 00:00:00 2001 From: Ondrej Kosta Date: Tue, 23 May 2023 09:11:14 +0200 Subject: [PATCH] Ethernet examples: removed configuration of SPI Input Delay which was introduced by a mistake --- .../ethernet/basic/components/ethernet_init/ethernet_init.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/examples/ethernet/basic/components/ethernet_init/ethernet_init.c b/examples/ethernet/basic/components/ethernet_init/ethernet_init.c index f19cc4b99f..48b7562856 100644 --- a/examples/ethernet/basic/components/ethernet_init/ethernet_init.c +++ b/examples/ethernet/basic/components/ethernet_init/ethernet_init.c @@ -180,9 +180,7 @@ static esp_eth_handle_t eth_init_spi(spi_eth_module_config_t *spi_eth_module_con .mode = 0, .clock_speed_hz = CONFIG_EXAMPLE_ETH_SPI_CLOCK_MHZ * 1000 * 1000, .queue_size = 20, - .spics_io_num = spi_eth_module_config->spi_cs_gpio, - .input_delay_ns = 20 - + .spics_io_num = spi_eth_module_config->spi_cs_gpio }; // Init vendor specific MAC config to default, and create new SPI Ethernet MAC instance // and new PHY instance based on board configuration