-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
multi-mss menus for lwip2, remove lwip xcc variant, lwip2 readme, upd…
…ates and fixes (#4039) lwip2 updates: > multi-mss makefile > forwardported espconn (no multicast yet) > restore max 3 ntp servers for configTime() coherency > unchain seldom chained pbufs > dns cache name length back to (256->48->) 128 > use sntp_stop/start() when dhcp address got > fix netif's hostname glue-handling > forwardported ping from lwip1.4 fix #3970 fix maybe #3963
- Loading branch information
Showing
8 changed files
with
261 additions
and
200 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
|
||
make install download, compile, install lwip2 | ||
make download download lwIP-2 builder | ||
make clean clean builder only | ||
|
||
glue and lwIP debug options are in builder/glue/gluedebug.h | ||
MSS values are in builder/Makefile.arduino | ||
MSS values in boards.txt are only informative | ||
|
||
current lwip2 submodule repository: https://github.com/d-a-v/esp82xx-nonos-linklayer/tree/arduino-2.4.0 |
Submodule builder
updated
22 files
+15 −2 | Makefile.arduino | |
+7 −3 | glue-esp/lwip-esp.c | |
+7 −7 | glue-lwip/arduino/lwipopts.h | |
+0 −9 | glue-lwip/esp-millis.h | |
+334 −0 | glue-lwip/esp-ping.c | |
+1,374 −0 | glue-lwip/espconn.c | |
+206 −0 | glue-lwip/espconn_buf.c | |
+1,485 −0 | glue-lwip/espconn_tcp.c | |
+432 −0 | glue-lwip/espconn_udp.c | |
+29 −26 | glue-lwip/lwip-git.c | |
+13 −0 | glue-lwip/lwip-git.h | |
+690 −0 | glue-lwip/lwip/apps-esp/espconn.h | |
+60 −0 | glue-lwip/lwip/apps-esp/espconn_buf.h | |
+61 −0 | glue-lwip/lwip/apps-esp/espconn_tcp.h | |
+64 −0 | glue-lwip/lwip/apps-esp/espconn_udp.h | |
+85 −0 | glue-lwip/lwip/apps-esp/ping.h | |
+1 −1 | glue/glue.h | |
+4 −4 | makefiles/Makefile.build-lwip2 | |
+2 −2 | makefiles/Makefile.defs | |
+4 −1 | makefiles/Makefile.glue | |
+6 −7 | makefiles/Makefile.lwip2 | |
+4 −0 | makefiles/Makefile.rules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters