Open AbdelwahedTahri opened 1 year ago
'uiT' task priority is actually set to 1.
in components/esp8266/source/startup.c there is : assert(xTaskCreate(user_init_entry, "uiT", ESP_TASK_MAIN_STACK, NULL, ESP_TASK_MAIN_PRIO, NULL) == pdPASS);
components/esp8266/source/startup.c
assert(xTaskCreate(user_init_entry, "uiT", ESP_TASK_MAIN_STACK, NULL, ESP_TASK_MAIN_PRIO, NULL) == pdPASS);
and in esp_task.h there is :
All committers have signed the CLA.
'uiT' task priority is actually set to 1.
in
components/esp8266/source/startup.c
there is :assert(xTaskCreate(user_init_entry, "uiT", ESP_TASK_MAIN_STACK, NULL, ESP_TASK_MAIN_PRIO, NULL) == pdPASS);
and in esp_task.h there is :
define ESP_TASK_MAIN_PRIO (ESP_TASK_PRIO_MIN + 1) // (0 + 1)