Skip to content

Commit

Permalink
Increased stack size to prevent stack overflow using esp-idf 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dentellaluca committed Jan 3, 2018
1 parent 65fafd7 commit a3359d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 00_empty/main/00_empty.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ void loop_task(void *pvParameter)
void app_main()
{

xTaskCreate(&loop_task, "loop_task", 512, NULL, 5, NULL);
xTaskCreate(&loop_task, "loop_task", 1024, NULL, 5, NULL);
}

0 comments on commit a3359d2

Please sign in to comment.