mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-29 18:27:20 +02:00
esp_event: increase default stack size in user_event_loop example
Example would trigger a stack overflow on S3. Closes https://github.com/espressif/esp-idf/issues/10008
This commit is contained in:
@ -94,7 +94,7 @@ void app_main(void)
|
||||
.queue_size = 5,
|
||||
.task_name = "loop_task", // task will be created
|
||||
.task_priority = uxTaskPriorityGet(NULL),
|
||||
.task_stack_size = 2048,
|
||||
.task_stack_size = 3072,
|
||||
.task_core_id = tskNO_AFFINITY
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user