We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad26497 commit f7f16f8Copy full SHA for f7f16f8
pkg/lwip/Makefile.include
@@ -20,8 +20,13 @@ PSEUDOMODULES += lwip_sock_async
20
#These flags enable calculating ICMP chksum in LWIP software.
21
#Without these flags RIOT device respond with ICMP chsum equal to 0, and
22
#cannot be successfully "pinged" from Windows hosts.
23
-CFLAGS +=-DCHECKSUM_GEN_ICMP=0
24
-CFLAGS +=-DLWIP_CHECKSUM_CTRL_PER_NETIF=1
+ifeq ($(BOARD),nucleo-f207zg)
+ CFLAGS +=-DCHECKSUM_GEN_ICMP=0
25
+endif
26
+
27
+ifeq ($(BOARD),nucleo-f429zi)
28
29
30
31
ifneq (,$(filter lwip_contrib,$(USEMODULE)))
32
DIRS += $(RIOTBASE)/pkg/lwip/contrib
0 commit comments