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:
Angus Gratton
2017-06-29 14:02:54 +10:00
committed by Angus Gratton
parent 415a7d742a
commit 3fe0022efa
4 changed files with 8 additions and 10 deletions

View File

@@ -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);
}