martin-ger / esp-open-lwip

ESP8266 lwIP library with NAT, SLIP, ENC28j60 Ethernet, and routing support
67 stars 25 forks source link

Error when trying to build #19

Open icodk opened 5 years ago

icodk commented 5 years ago

I cloned the rep and then run make. Got the following error esp-open-lwip$ make make: Nothing to be done for 'FORCE'. Any idea what is wrong ? Thanks in advance

martin-ger commented 5 years ago

This version of lwIP can replace the default version of lwIP in the esp-open-sdk. Just clone and replace the esp-lwip-open directory in the sdk. Then call make in the esp_open_sdk.

icodk commented 5 years ago

Thank I am looking for a project example targeting esp8266 that is based on lwip and support enc8266. So far I could only find examples of only two of the three (esp,enc,lwip) This example https://github.com/klarsys/esp_enc28j60 is a working one but it uses its own tcp stack. All the examples I found so far use lwip as part of the user code and not part of the SDK. Evan Espressif own lwip example. May be it is not significant This example https://github.com/kadamski/esp-lwip got esp,lwip is very close to my needs but I can't see how can I add enc support. If you could share with me an example that do all these three things I will greatly appreciate it. Ultimately I would like to add it to the Sming framework where there is already support for lwip and ssl client.