8000 update to lwIP-2.1.0: partial SACK support by default (de-selectable in menu) by d-a-v · Pull Request #5126 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

update to lwIP-2.1.0: partial SACK support by default (de-selectable in menu) #5126

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 33 commits into from
Oct 9, 2018
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
f32ccfc
update to lwIP-2.1.0rc1: partial SACK support
d-a-v Sep 12, 2018
ed75b21
hash fix
d-a-v Sep 12, 2018
1337c27
get some flash back due to mistake in conf (fragmentation & reassembl…
d-a-v Sep 12, 2018
2e467db
Merge branch 'master' into lwip210
d-a-v Sep 12, 2018
a49db97
Merge branch 'master' into lwip210
d-a-v Sep 12, 2018
912b270
Merge branch 'master' into lwip210
devyte Sep 13, 2018
15b50e9
Merge branch 'master' into lwip210
devyte Sep 22, 2018
c3bb0b4
add missing include files
d-a-v Sep 24, 2018
a42e660
Merge branch 'master' into lwip210
devyte Sep 24, 2018
6df7944
Merge branch 'master' into lwip210
d-a-v Sep 26, 2018
a0921d8
update to lwip-2.1.0(release) + remove unused lwIP's include files
d-a-v Sep 26, 2018
5e19c94
Merge branch 'master' into lwip210
d-a-v Sep 26, 2018
2cae680
Merge branch 'master' into lwip210
d-a-v Sep 27, 2018
c4770bf
Merge branch 'lwip210' of github.com:d-a-v/Arduino into lwip210
d-a-v Sep 27, 2018
cc2a83c
lwIP release 2.1.0, SACK is now default, bigger, no-SACK is selectable
d-a-v Sep 27, 2018
d9ae175
fix ldscript
d-a-v Sep 27, 2018
438d6b1
Merge branch 'master' into lwip210
d-a-v Sep 28, 2018
1a87cd6
pio
d-a-v Sep 28, 2018
77edc1a
Merge branch 'master' into lwip210
d-a-v Sep 28, 2018
fe38d65
Merge branch 'master' into lwip210
d-a-v Sep 29, 2018
f088c19
Merge branch 'master' into lwip210
d-a-v Oct 1, 2018
561c3cb
Merge branch 'master' into lwip210
d-a-v Oct 2, 2018
02145e6
rename 'sack' option to 'feat'ure option, + IP fragmentation/reassembly
d-a-v Oct 2, 2018
b4b5264
Merge branch 'lwip210' of github.com:d-a-v/Arduino into lwip210
d-a-v Oct 2, 2018
10346a3
merge, fix pio
d-a-v Oct 2, 2018
fbd594a
change internal/hidden string
d-a-v Oct 2, 2018
c531733
Merge branch 'master' into lwip210
d-a-v Oct 4, 2018
f91cf58
Merge branch 'master' into lwip210
d-a-v Oct 5, 2018
60b3b2e
pio: more lwip2 configuration: + without sack for no change in flash …
d-a-v Oct 5, 2018
34f27cd
Merge branch 'master' into lwip210
d-a-v Oct 5, 2018
709d3f0
Merge branch 'master' into lwip210
devyte Oct 7, 2018
969d95c
Merge branch 'master' into lwip210
devyte Oct 9, 2018
c19d3b8
Merge branch 'master' into lwip210
devyte Oct 9, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
pio: more lwip2 configuration: + without sack for no change in flash …
…footprint
  • Loading branch information
d-a-v committed Oct 5, 2018
commit 60b3b2e8ff99deda85a0a44dc47fb17ee359f500
12 changes: 12 additions & 0 deletions tools/platformio-build.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,18 @@ def scons_patched_match_splitext(path, suffixes=None):
CPPPATH=[join(FRAMEWORK_DIR, "tools", "sdk", "lwip2", "include")],
LIBS=["lwip2-1460-feat"]
)
elif "PIO_FRAMEWORK_ARDUINO_LWIP2_LOW_MEMORY_LOW_FLASH" in flatten_cppdefines:
env.Append(
CPPDEFINES=[("TCP_MSS", 536), ("LWIP_FEATURES", 0)],
CPPPATH=[join(FRAMEWORK_DIR, "tools", "sdk", "lwip2", "include")],
LIBS=["lwip2-536"]
)
elif "PIO_FRAMEWORK_ARDUINO_LWIP2_HIGHER_BANDWIDTH_LOW_FLASH" in flatten_cppdefines:
env.Append(
CPPDEFINES=[("TCP_MSS", 1460), ("LWIP_FEATURES", 0)],
CPPPATH=[join(FRAMEWORK_DIR, "tools", "sdk", "lwip2", "include")],
LIBS=["lwip2-1460"]
)
else:
env.Append(
CPPPATH=[join(FRAMEWORK_DIR, "tools", "sdk", "lwip", "include")],
Expand Down
0