mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-05-23 01:58:24 +08:00
feat(lwip): Add configuration for TCPIP mailbox size
This commit is contained in:
@ -25,6 +25,14 @@ config LWIP_GLOBAL_DATA_LINK_IRAM
|
|||||||
help
|
help
|
||||||
Link LWIP global data(.bss .data COMMON) from DRAM to IRAM.
|
Link LWIP global data(.bss .data COMMON) from DRAM to IRAM.
|
||||||
|
|
||||||
|
config TCPIP_RECVMBOX_SIZE
|
||||||
|
int "TCPIP task receive mail box size"
|
||||||
|
default 32
|
||||||
|
range 6 64
|
||||||
|
help
|
||||||
|
Set TCPIP task receive mail box size. Generally bigger value means higher throughput
|
||||||
|
but more memory. The value should be bigger than UDP/TCP mail box size.
|
||||||
|
|
||||||
menu "ARP"
|
menu "ARP"
|
||||||
|
|
||||||
config LWIP_ARP_TABLE_SIZE
|
config LWIP_ARP_TABLE_SIZE
|
||||||
|
@ -1246,7 +1246,7 @@ void *memp_malloc_ll(size_t type);
|
|||||||
* The queue size value itself is platform-dependent, but is passed to
|
* The queue size value itself is platform-dependent, but is passed to
|
||||||
* sys_mbox_new() when tcpip_init is called.
|
* sys_mbox_new() when tcpip_init is called.
|
||||||
*/
|
*/
|
||||||
#define TCPIP_MBOX_SIZE 16
|
#define TCPIP_MBOX_SIZE CONFIG_TCPIP_RECVMBOX_SIZE
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define this to something that triggers a watchdog. This is called from
|
* Define this to something that triggers a watchdog. This is called from
|
||||||
|
Reference in New Issue
Block a user