Skip to content

Commit 91c32b5

Browse files
authored
Merge pull request #1 from xiangxistu/lwIP-2.1.2
lwIP 2.1.2
2 parents f715f29 + 38db074 commit 91c32b5

File tree

1,822 files changed

+332793
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,822 files changed

+332793
-2
lines changed

components/net/Kconfig

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,13 @@ config RT_USING_LWIP
120120

121121
config RT_USING_LWIP210
122122
bool "lwIP v2.1.0"
123+
124+
config RT_USING_LWIP212
125+
bool "lwIP v2.1.2"
126+
123127
endchoice
124128

125-
if (RT_USING_LWIP210 || RT_USING_LWIP202)
129+
if (RT_USING_LWIP210 || RT_USING_LWIP202 || RT_USING_LWIP212)
126130
config RT_USING_LWIP_IPV6
127131
bool "IPV6 protocol"
128132
default n

components/net/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ cwd = GetCurrentDir()
88
list = os.listdir(cwd)
99

1010
# the default version of LWIP is 2.0.2
11-
if not GetDepend('RT_USING_LWIP141') and not GetDepend('RT_USING_LWIP202') and not GetDepend('RT_USING_LWIP210'):
11+
if not GetDepend('RT_USING_LWIP141') and not GetDepend('RT_USING_LWIP202') and not GetDepend('RT_USING_LWIP210') and not GetDepend('RT_USING_LWIP212'):
1212
AddDepend('RT_USING_LWIP202')
1313

1414
for d in list:

0 commit comments

Comments
 (0)