Skip to content

Commit 285c259

Browse files
committed
Performance improvement of LWIP communication in RZ_A1 related
For LWIP communication speedup in RZ_A1 related, I changed the below macro value and added the definition processing in RZ/A1 related header file(lwipopts_conf.h). For this reason, those macros are overrode by RZ/A1 related values, not default values.
1 parent 1b303ab commit 285c259

File tree

1 file changed

+7
-0
lines changed
  • features/FEATURE_LWIP/lwip-interface/lwip-eth/arch/TARGET_RZ_A1XX

1 file changed

+7
-0
lines changed

features/FEATURE_LWIP/lwip-interface/lwip-eth/arch/TARGET_RZ_A1XX/lwipopts_conf.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,11 @@
2323

2424
#define MEM_SIZE (1600 * 16)
2525

26+
#define MEMP_NUM_TCP_SEG 32
27+
#define TCP_MSS 1460
28+
#define PBUF_POOL_SIZE 16
29+
#define TCP_SND_BUF (8 * TCP_MSS)
30+
#define TCP_WND (TCP_MSS * 8)
31+
#define PBUF_POOL_BUFSIZE 1600
32+
2633
#endif

0 commit comments

Comments
 (0)