sw_services: lwip stacksize given through tcl has been modified
With the latest freertos, the stacksize given through tcl is multiplied internally by wordsize. To take care of that, this change in stacksize is needed. Signed-off-by: Kinjal Pravinbhai Patel <patelki@xilinx.com> Acked-by: Anirudha Sarangi <anirudh@xilinx.com>
This commit is contained in:
parent
7859933f8a
commit
709f03aed0
1 changed files with 1 additions and 1 deletions
|
@ -447,7 +447,7 @@ proc generate_lwip_opts {libhandle} {
|
|||
puts $lwipopts_fd "\#define OS_IS_FREERTOS"
|
||||
puts $lwipopts_fd "\#define DEFAULT_THREAD_PRIO $thread_prio"
|
||||
puts $lwipopts_fd "\#define TCPIP_THREAD_PRIO ($thread_prio + 1)"
|
||||
puts $lwipopts_fd "\#define TCPIP_THREAD_STACKSIZE 4096"
|
||||
puts $lwipopts_fd "\#define TCPIP_THREAD_STACKSIZE 1024"
|
||||
puts $lwipopts_fd "\#define DEFAULT_TCP_RECVMBOX_SIZE 200"
|
||||
puts $lwipopts_fd "\#define DEFAULT_ACCEPTMBOX_SIZE 5"
|
||||
puts $lwipopts_fd "\#define TCPIP_MBOX_SIZE 200"
|
||||
|
|
Loading…
Add table
Reference in a new issue