mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-06-29 05:07:20 +08:00
feat(startup): Modify app_main task priority
This commit is contained in:
@ -177,7 +177,7 @@ void call_start_cpu(size_t start_addr)
|
|||||||
esp_newlib_init();
|
esp_newlib_init();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
assert(xTaskCreate(user_init_entry, "uiT", ESP_TASK_MAIN_STACK, NULL, configMAX_PRIORITIES, NULL) == pdPASS);
|
assert(xTaskCreate(user_init_entry, "uiT", ESP_TASK_MAIN_STACK, NULL, ESP_TASK_MAIN_PRIO, NULL) == pdPASS);
|
||||||
|
|
||||||
vTaskStartScheduler();
|
vTaskStartScheduler();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user