mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-06-14 02:00:12 +08:00
feat(freertos): Add option for idle task stack size
Modify min size from 768 to 1024 bytes.
This commit is contained in:
@ -1959,7 +1959,7 @@ BaseType_t xReturn;
|
||||
/* The Idle task is being created using dynamically allocated RAM. */
|
||||
xReturn = xTaskCreate( prvIdleTask,
|
||||
configIDLE_TASK_NAME,
|
||||
configMINIMAL_STACK_SIZE,
|
||||
configIDLE_TASK_STACK_SIZE,
|
||||
( void * ) NULL,
|
||||
( tskIDLE_PRIORITY | portPRIVILEGE_BIT ),
|
||||
&xIdleTaskHandle ); /*lint !e961 MISRA exception, justified as it is not a redundant explicit cast to all supported compilers. */
|
||||
|
Reference in New Issue
Block a user