johnnytolengo

Results 31 comments of johnnytolengo

> `Thank for your answer. I fixed all the compilation errors but the ESP32 crashes when it call begin()` How do you solve the MR,etc definitions?

I got the same crash: `[I][w5500-lwIP.cpp:121] begin(): NO_SYS=0 /Users/ficeto/Desktop/ESP32/ESP32/esp-idf-public/components/freertos/./queue.c:1441 (xQueueGenericReceive)- assert failed! abort() was called at PC 0x40084b75 on core 1 ` Could you help me how to fix it?...

I already tried @psykokwak-com's branch https://github.com/psykokwak-com/W5500lwIP/tree/esp32 **With some modifications it compiled:** `w5500-lwIP.cpp -- boolean Wiznet5500lwIP::begin (SPIparam(SPIClass& spi,) const uint8_t* macAddress, uint16_t mtu) ++ boolean Wiznet5500lwIP::begin(const uint8_t* macAddress, uint16_t mtu) w5500-lwIP.h...

Ohh I didn't know that the wifi must be "ON". Now it is on and just using ether.begin(mac_addr) the W5500 is now on and got IP from the DHCP also...

@psykokwak-com I did the test again and I it is working without ether.loop(). I be glad to know how can I set the IP address for the module :) And...

Could you give me a tip for what I have to do to add "set ip address" feature? I am a noob in the lwIP world, I really don't know...

Ok I will work on that. Do you have also any tips how to make a EthClient ?

ok, but what happen if Wifi and Ethernet are in different states? Eg. 1) Wifi in WiFi.mode(WIFI_OFF) and Ethernet connected via DHCP. 2) Wifi and Ethernet in a different networks...

After a week finally I have the static ip address working, BUT... the gateway is not working (seems to be the default route) inside the local network everything work. That...

Finally works! at least the basics :) Here is my code: https://github.com/johnnytolengo/w5500lwip