espressif / ESP8266_RTOS_SDK

Latest ESP8266 SDK based on FreeRTOS, esp-idf style.
http://bbs.espressif.com
Apache License 2.0
3.35k stars 1.57k forks source link

Update system-tasks.rst (GIT8266O-819) #1242

Open AbdelwahedTahri opened 1 year ago

AbdelwahedTahri commented 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);

and in esp_task.h there is :

define ESP_TASK_MAIN_PRIO (ESP_TASK_PRIO_MIN + 1) // (0 + 1)

CLAassistant commented 1 year ago

CLA assistant check
All committers have signed the CLA.