Search found 6 matches

by aelsayedhamouda
Wed Mar 31, 2021 7:11 pm
Forum: General Discussion
Topic: generate log file
Replies: 8
Views: 14169

Re: generate log file

idf.py -p port monitor | tee run.log
by aelsayedhamouda
Fri Jul 17, 2020 12:59 am
Forum: General Discussion
Topic: ESP32 DHCP server lan8720 ethernet interface using arduino SDK
Replies: 11
Views: 16788

Re: ESP32 DHCP server lan8720 ethernet interface using arduino SDK

thanks you very much peter, i decided to move from Arduino SDK to idf to avoid the whole problem. but to use this feature "dhcp server", i had to work on release branch "release/v4.2" not a stable version tag "v4.0" at the time of this post. i thinks the v4.1 idf has the feature also but i decided t...
by aelsayedhamouda
Wed Jul 08, 2020 6:54 pm
Forum: General Discussion
Topic: ESP32 DHCP server lan8720 ethernet interface using arduino SDK
Replies: 11
Views: 16788

Re: ESP32 DHCP server lan8720 ethernet interface using arduino SDK

thanks for replying Depends which version of the IDF you use. DHCP server on wired is available in v4.1-beta1-317 but not earlier versions (well maybe 4.0 but not 3.x). The tcp-ip initialisation interface has changed but other than that it all works. One of my earlier posts has the initialisation co...
by aelsayedhamouda
Wed Jul 08, 2020 4:53 pm
Forum: General Discussion
Topic: ESP32 DHCP server lan8720 ethernet interface using arduino SDK
Replies: 11
Views: 16788

Re: ESP32 DHCP server lan8720 ethernet interface using arduino SDK

Depends which version of the IDF you use. DHCP server on wired is available in v4.1-beta1-317 but not earlier versions (well maybe 4.0 but not 3.x). The tcp-ip initialisation interface has changed but other than that it all works. One of my earlier posts has the initialisation code in it. thanks fo...
by aelsayedhamouda
Tue Jul 07, 2020 3:41 pm
Forum: General Discussion
Topic: ESP32 DHCP server lan8720 ethernet interface using arduino SDK
Replies: 11
Views: 16788

Re: ESP32 DHCP server lan8720 ethernet interface using arduino SDK

another thing i noticed. In the DHCP APIs start and stop in tcpip_adapter.h, it says that it is bind to softAP interface, is this means that it is only working on wifi not ethernet adapter /** * @brief Start DHCP server * * @note Currently DHCP server is bind to softAP interface. * * @param[in] tcpi...
by aelsayedhamouda
Mon Jul 06, 2020 11:56 pm
Forum: General Discussion
Topic: ESP32 DHCP server lan8720 ethernet interface using arduino SDK
Replies: 11
Views: 16788

ESP32 DHCP server lan8720 ethernet interface using arduino SDK

hello everyone, i need to implement a DHCP server on the ESP32 like the one on wifiAccessPoit.ino, but using the ethernet interface not the wifi interface. i am using lan8720 and i used the eth_lan8720_internal_clock example successfully and now i can ping google with it or ping it from any one in m...