Search found 181 matches

by ESP_ondrej
Wed Apr 05, 2023 1:53 pm
Forum: ESP-IDF
Topic: EMAC TX buffer runs full when no connection is established "emac_esp32_transmit(): insufficient TX buffer size"
Replies: 1
Views: 1815

Re: EMAC TX buffer runs full when no connection is established "emac_esp32_transmit(): insufficient TX buffer size"

Hi @DSchmid, this is known issue, please see https://github.com/espressif/esp-idf/issues/10851. It already has been fixed at master branch. Now, it is waiting to be backported to v5.0.
by ESP_ondrej
Mon Apr 03, 2023 4:25 pm
Forum: ESP32 Arduino
Topic: IP settings for WT32 ETH01?
Replies: 2
Views: 3376

Re: IP settings for WT32 ETH01?

Based on your description, it seems you configured the same IP address on your PC and in the ESP32 code. I set the IP to 192.168.0.112 and the gateway to 192.168.0.1 in the code in the code, then on my laptop(running windows 10) I set the ethernet ipv4 properties to match this: IP Address: 192.168.0...
by ESP_ondrej
Mon Feb 27, 2023 7:22 am
Forum: General Discussion
Topic: JL1101 Support
Replies: 3
Views: 2458

Re: JL1101 Support

There is no such a driver in the ESP-IDF. However, you could try to write your own. It should not be that hard since it seems the JL1101 has standard IEEE 802.3 RMII/MII interface. You can follow the guideline at https://blog.espressif.com/esp-idf-custom-ethernet-phy-driver-quick-guide-45f9d23de0ad ...
by ESP_ondrej
Wed Feb 08, 2023 12:19 pm
Forum: ESP-IDF
Topic: eth2ap gets ethernet link down and up repeatedly
Replies: 11
Views: 71481

Re: eth2ap gets ethernet link down and up repeatedly

GPIO17 should not be that much affected. However, a PCB design may affect that and PHY chip's robustness is also another side. Different behavior might be observed with different PHY chips. There might be incorrect phase shift in CLK or other issues with signal integrity... You can try to use GPIO16...
by ESP_ondrej
Mon Feb 06, 2023 9:06 am
Forum: ESP-IDF
Topic: eth2ap gets ethernet link down and up repeatedly
Replies: 11
Views: 71481

Re: eth2ap gets ethernet link down and up repeatedly

Using APPL CLK directly on the GPIO0 as a source for RMII REF CLK is experimental feature. There was really an issue observed when used along with WiFi under high traffic. This is documented in the Ethernet Configuration menu, please see below: GPIO0 can be set to output a pre-divided PLL clock (tes...
by ESP_ondrej
Thu Jan 26, 2023 4:27 pm
Forum: Hardware
Topic: EMAC support: ESP32-­WROOM­-32 vs ESP32-­S3­-WROOM­-1
Replies: 3
Views: 3182

Re: EMAC support: ESP32-­WROOM­-32 vs ESP32-­S3­-WROOM­-1

ESP32 WROOM/WROVER support Ethernet. But ESP32-S and ESP32-C series does not support Ethernet. You can use Espressif Product Selector to help you to find appropriate product https://products.espressif.com/#/produc ... =en&names=
by ESP_ondrej
Thu Jan 26, 2023 3:24 pm
Forum: Hardware
Topic: EMAC support: ESP32-­WROOM­-32 vs ESP32-­S3­-WROOM­-1
Replies: 3
Views: 3182

Re: EMAC support: ESP32-­WROOM­-32 vs ESP32-­S3­-WROOM­-1

Hi taoglas,

ESP32-­S3 is different chip! Please see ESP32 modules datasheets at https://www.espressif.com/en/products/modules/esp32

Edit: Just note that the Ethernet is currently (Q1.2023) supported only by ESP32 SoC.

Regards
Ondrej
by ESP_ondrej
Wed Jan 18, 2023 8:37 am
Forum: ESP-IDF
Topic: SPI master MOSI starts later than SCK when network activity
Replies: 8
Views: 3243

Re: SPI master MOSI starts later than SCK when network activity

SPI and EMAC shares the DMA. Could you please try to decrease `dma_burst_len` in your EMAC config (`eth_esp32_emac_config_t esp32_emac_config`) to e.g. `ETH_DMA_BURST_LEN_2`?
by ESP_ondrej
Tue Jan 17, 2023 8:39 am
Forum: General Discussion
Topic: Esp-idf 4.4 and Ethernet phy device ksz8091
Replies: 1
Views: 995

Re: Esp-idf 4.4 and Ethernet phy device ksz8091

Yes, you can use it. The ESP-IDF PHY driver "runs" the PHY chip only in the basic mode and this is the same for both chips.

Difference between the chips is described here:
https://microchipsupport.force.com/s/ar ... ernet-PHYs
by ESP_ondrej
Tue Jan 17, 2023 8:32 am
Forum: ESP-IDF
Topic: ESP-IDF: W5500 reset timeout Error.
Replies: 1
Views: 855

Re: ESP-IDF: W5500 reset timeout Error.

Could you please share the whole log?