Skip to content

Commit f01ec93

Browse files
[Silabs] Adding the gn build header for the lwip IPv4 and RS9116 (project-chip#35142)
* adding the gn build header for the lwip and rs9116 * Restyled by clang-format --------- Co-authored-by: Restyled.io <commits@restyled.io>
1 parent 0b5af2a commit f01ec93

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

examples/platform/silabs/efr32/rs911x/rsi_wlan_config.h

+4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020

2121
#include "rsi_wlan_defines.h"
2222

23+
#if (SL_MATTER_GN_BUILD == 0)
24+
#include "sl_matter_wifi_config.h"
25+
#endif // SL_MATTER_GN_BUILD
26+
2327
//! Enable feature
2428
#define RSI_ENABLE 1
2529
//! Disable feature

src/lwip/silabs/lwipopts-rs911x.h

+10
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@
3232

3333
#include <stdlib.h>
3434

35+
#if (SL_MATTER_GN_BUILD == 0)
36+
#include "sl_matter_wifi_config.h"
37+
#endif // SL_MATTER_GN_BUILD
38+
3539
#define NO_SYS 0
3640
#define MEM_ALIGNMENT (4)
3741
#define MEMP_NUM_TCP_SEG (TCP_SND_QUEUELEN + 1)
@@ -90,6 +94,12 @@
9094

9195
#define MEMP_NUM_NETCONN (0)
9296

97+
#if CHIP_DEVICE_CONFIG_ENABLE_IPV4
98+
#define LWIP_IPV4 1
99+
#else
100+
#define LWIP_IPV4 0
101+
#endif // CHIP_DEVICE_CONFIG_ENABLE_IPV4
102+
93103
#ifndef LWIP_ARP
94104
#define LWIP_ARP (LWIP_IPV4)
95105
#endif /* LWIP_ARP */

src/lwip/silabs/lwipopts-wf200.h

+10
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@
3232

3333
#include <stdlib.h>
3434

35+
#if (SL_MATTER_GN_BUILD == 0)
36+
#include "sl_matter_wifi_config.h"
37+
#endif // SL_MATTER_GN_BUILD
38+
3539
#define NO_SYS 0
3640
#define MEM_ALIGNMENT (4)
3741
#define MEMP_NUM_TCP_SEG (TCP_SND_QUEUELEN + 1)
@@ -91,6 +95,12 @@
9195

9296
#define MEMP_NUM_NETCONN (0)
9397

98+
#if CHIP_DEVICE_CONFIG_ENABLE_IPV4
99+
#define LWIP_IPV4 1
100+
#else
101+
#define LWIP_IPV4 0
102+
#endif // CHIP_DEVICE_CONFIG_ENABLE_IPV4
103+
94104
#ifndef LWIP_ARP
95105
#define LWIP_ARP (LWIP_IPV4)
96106
#endif /* LWIP_ARP */

0 commit comments

Comments
 (0)