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:
Kinjal Pravinbhai Patel 2015-11-04 13:58:20 +05:30 committed by Nava kishore Manne
parent 7859933f8a
commit 709f03aed0

View file

@ -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"