FreeRTOS - Memory Management
Identify the error in this static task creation code snippet:
StaticTask_t taskBuffer; StackType_t stackBuffer[100]; xTaskCreateStatic(TaskFunction, "Task", 100, NULL, 1, NULL, &taskBuffer);
