Search found 181 matches

by ESP_ondrej
Tue Mar 05, 2024 8:05 am
Forum: Hardware
Topic: ESP32­-PICO­-MINI­-02U and Ethernet: MDIO, MDC, and REFCLK?
Replies: 3
Views: 940

Re: ESP32­-PICO­-MINI­-02U and Ethernet: MDIO, MDC, and REFCLK?

Yes, MDIO and MDC can be assigned to any GPIO which is output capable (check ESP32 TRM) via GPIO matrix. Also be careful with pins which are used as bootstrap pins (check datasheet).
by ESP_ondrej
Mon Mar 04, 2024 9:15 am
Forum: ESP-IDF
Topic: Ethernet autonegotiation problem in ESP32C6
Replies: 3
Views: 693

Re: Ethernet autonegotiation problem in ESP32C6

What Ethernet module do you use? If auto-negotiation is enabled it should work out of the box.
by ESP_ondrej
Mon Jan 29, 2024 8:26 am
Forum: ESP-IDF
Topic: ESP32 Ethernet with WIFI STA
Replies: 1
Views: 686

Re: ESP32 Ethernet with WIFI STA

Check examples at https://github.com/espressif/esp-idf/tr ... es/network if any suits your needs.
by ESP_ondrej
Mon Jan 22, 2024 8:19 am
Forum: ESP-IDF
Topic: Running a WIZ550io (SPI Ethernet Module with W5500 chip)
Replies: 3
Views: 1489

Re: Running a WIZ550io (SPI Ethernet Module with W5500 chip)

There probably is some issue with SPI as @DrMickeyLauer mentioned. 1) Check the GPIO configuration once again. Ensure INT pin is connected too. 2) If custom board is not used and just wires are used, use wires as short as possible and with matching length. 3) Decrease SPI frequency to e.g. 4 MHz. No...
by ESP_ondrej
Mon Jan 15, 2024 6:24 pm
Forum: ESP-IDF
Topic: Transparent ethernet bridge and ping to ESP32C6 module
Replies: 3
Views: 76781

Re: Transparent ethernet bridge and ping to ESP32C6 module

If I understand it correctly you want to have both Ethernet interfaces to be bridged but, at the same time, to the Ethernet interface has its own IP address. Am I right? You cannot attach multiple netifs to single network interface. The correct way is to create netif for each interface and then add ...
by ESP_ondrej
Thu Jan 11, 2024 11:31 am
Forum: ESP-IDF
Topic: Can esp32s3 connnecct to an etherent PHY? like DP83TC813x-Q1?
Replies: 3
Views: 19651

Re: Can esp32s3 connnecct to an etherent PHY? like DP83TC813x-Q1?

You can use product selector to help you choose the right chip https://products.espressif.com/#/produc ... tor?names=

Regarding release date of ESP32P4, please wait for and follow official statements on our web pages.
by ESP_ondrej
Thu Jan 11, 2024 9:43 am
Forum: ESP-IDF
Topic: Can esp32s3 connnecct to an etherent PHY? like DP83TC813x-Q1?
Replies: 3
Views: 19651

Re: Can esp32s3 connnecct to an etherent PHY? like DP83TC813x-Q1?

ESP32S3 does not have internal EMAC. Therefore you cannot connect Ethernet PHY to it. You have to use SPI Ethernet module which has the EMAC integrated. Or you can switch to ESP32 or ESP32P4 if it satisfies to your needs. BTW, regarding documentation. I'll fix that introductory section to make it mo...
by ESP_ondrej
Tue Jan 09, 2024 7:59 pm
Forum: Hardware
Topic: MIIM / SMI "ETH Connected" check on eth-switch
Replies: 8
Views: 42366

Re: MIIM / SMI "ETH Connected" check on eth-switch

Fuu, it was very long day today but I now fully recall why I didn't implement the SMI in KSZ8863 driver. It is not possible on ESP32! It's not fault of the ESP32 though. I'll try to explain. In terms of KSZ8863 terminology, SMI is non-standard version of IEEE 802.3 MII Management Interface (MIIM), s...
by ESP_ondrej
Tue Jan 09, 2024 8:41 am
Forum: Hardware
Topic: MIIM / SMI "ETH Connected" check on eth-switch
Replies: 8
Views: 42366

Re: MIIM / SMI "ETH Connected" check on eth-switch

Once I have time I'll have a look at it in more details. I created https://github.com/espressif/esp-eth-drivers/issues/20