mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-10 04:43:33 +00:00
stack sizes: Revert stack size increases added in 8d43859
Set min stack size to 2048 if AppTrace support is enabled, 512 bytes otherwise.
This commit is contained in:

committed by
Angus Gratton

parent
415a7d742a
commit
3fe0022efa
@@ -40,5 +40,5 @@ void blink_task(void *pvParameter)
|
||||
|
||||
void app_main()
|
||||
{
|
||||
xTaskCreate(&blink_task, "blink_task", 2048, NULL, 5, NULL);
|
||||
xTaskCreate(&blink_task, "blink_task", configMINIMAL_STACK_SIZE, NULL, 5, NULL);
|
||||
}
|
||||
|
Reference in New Issue
Block a user