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.
pull/5813/head
TomoYamanaka 2018-01-09 18:28:39 +09:00
parent 1b303ab5d6
commit 285c259472
1 changed files with 7 additions and 0 deletions

View File

@ -23,4 +23,11 @@
#define MEM_SIZE (1600 * 16) #define MEM_SIZE (1600 * 16)
#define MEMP_NUM_TCP_SEG 32
#define TCP_MSS 1460
#define PBUF_POOL_SIZE 16
#define TCP_SND_BUF (8 * TCP_MSS)
#define TCP_WND (TCP_MSS * 8)
#define PBUF_POOL_BUFSIZE 1600
#endif #endif