FreeRTOS - Task Creation and Management
Given the code snippet:
void vTask(void *pvParameters) { int a[50]; while(1) { /* task code */ } }
xTaskCreate(vTask, "Task", 50, NULL, 1, NULL);
What is the likely problem with this stack size allocation?