Im currently having a problem with the Ethernet interface of my ESP32.
In my webserver code I have an event handler, which logs the current state of the ethernet interface.
Normally it should be like this:
Code: Select all
I (5948) webserver: SYSTEM_EVENT_AP_START
I (10258) webserver: a station connected to ESP32 soft-AP
I (25688) Ethernet: Eth enable retval : 0
I (25688) webserver: SYSTEM_EVENT_ETH_START : ESP32 ethernet start
I (29688) webserver: SYSTEM_EVENT_ETH_CONNECTED : ESP32 ethernet phy link up
Then I get a log output like this.
Code: Select all
I (5948) webserver: SYSTEM_EVENT_AP_START
I (10258) webserver: a station connected to ESP32 soft-AP
I (25688) Ethernet: Eth enable retval : 0
I (25688) webserver: SYSTEM_EVENT_ETH_START : ESP32 ethernet start
--> At this point the whole system is freezing
What might be the cause for this issue ?
I'll appreciate any help. Thanks for the support.