Increased the stack size for the lwIP thread from 1024 to 1200. Needed for the u-blox ODIN-W2 driver. The actually needed size has not been measured.

pull/2874/head
andreas.larsson 2016-10-04 11:59:59 +02:00
parent e87f013c4d
commit f5675cc822
1 changed files with 2 additions and 2 deletions

View File

@ -81,9 +81,9 @@
#define DEFAULT_ACCEPTMBOX_SIZE 8
#ifdef LWIP_DEBUG
#define TCPIP_THREAD_STACKSIZE 1024*2
#define TCPIP_THREAD_STACKSIZE 1200*2
#else
#define TCPIP_THREAD_STACKSIZE 1024
#define TCPIP_THREAD_STACKSIZE 1200
#endif
#define TCPIP_THREAD_PRIO (osPriorityNormal)