File tree Expand file tree Collapse file tree 2 files changed +0
-13
lines changed Expand file tree Collapse file tree 2 files changed +0
-13
lines changed Original file line number Diff line number Diff line change 84
84
#define LWIP_RAW MBED_CONF_LWIP_RAW_SOCKET_ENABLED
85
85
86
86
#define MEMP_NUM_TCPIP_MSG_INPKT MBED_CONF_LWIP_MEMP_NUM_TCPIP_MSG_INPKT
87
- #define TCPIP_MBOX_SIZE MBED_CONF_LWIP_TCPIP_MBOX_SIZE
88
- #define DEFAULT_TCP_RECVMBOX_SIZE MBED_CONF_LWIP_DEFAULT_TCP_RECVMBOX_SIZE
89
- #define DEFAULT_UDP_RECVMBOX_SIZE 8
90
- #define DEFAULT_RAW_RECVMBOX_SIZE 8
91
- #define DEFAULT_ACCEPTMBOX_SIZE 8
92
87
93
88
// Thread stacks use 8-byte alignment
94
89
#define LWIP_ALIGN_UP (pos , align ) ((pos) % (align) ? (pos) + ((align) - (pos) % (align)) : (pos))
Original file line number Diff line number Diff line change 90
90
"help" : " TCP Maximum segment size, see LWIP opt.h for more information. Current default is 536." ,
91
91
"value" : 536
92
92
},
93
- "tcpip-mbox-size" : {
94
- "help" : " TCPIP mailbox size" ,
95
- "value" : 8
96
- },
97
- "default-tcp-recvmbox-size" : {
98
- "help" : " Default TCPIP receive mailbox size" ,
99
- "value" : 8
100
- },
101
93
"mbox-size" : {
102
94
"help" : " mailbox size" ,
103
95
"value" : 8
You can’t perform that action at this time.
0 commit comments