]> granicus.if.org Git - esp-idf/commitdiff
components: lwip - Modify lwip task priority and stack definition method
authorliuzhifu <liuzhifu@espressif.com>
Thu, 1 Sep 2016 06:48:12 +0000 (14:48 +0800)
committerWu Jian Gang <wujiangang@espressif.com>
Wed, 14 Sep 2016 04:00:46 +0000 (12:00 +0800)
lwip task priority and stack size defintion should not depends on esp_task.h, define it
in lwipopts.h directly

components/lwip/include/lwip/port/lwipopts.h

index 2dbb1b2f380d8b6a1583793f2bc871991ff4dcdf..2ffbf071b17cb95cc314d6253fbc36a5881bf8f7 100755 (executable)
@@ -33,7 +33,6 @@
 #define __LWIPOPTS_H__
 
 #include <stdlib.h>
-#include "esp_task.h"
 
 /* Enable all Espressif-only options */
 #define LWIP_ESP8266
@@ -324,14 +323,14 @@ extern unsigned char misc_prof_get_tcp_snd_buf(void);
  * The stack size value itself is platform-dependent, but is passed to
  * sys_thread_new() when the thread is created.
  */
-#define TCPIP_THREAD_STACKSIZE          ESP_TASKD_LWIP_STACK
+#define TCPIP_THREAD_STACKSIZE          2048
 
 /**
  * TCPIP_THREAD_PRIO: The priority assigned to the main tcpip thread.
  * The priority value itself is platform-dependent, but is passed to
  * sys_thread_new() when the thread is created.
  */
-#define TCPIP_THREAD_PRIO               ESP_TASKD_LWIP_PRIO
+#define TCPIP_THREAD_PRIO               (configMAX_PRIORITIES - 7)
 
 /**
  * TCPIP_MBOX_SIZE: The mailbox size for the tcpip thread messages