FreeRTOS - Memory Management
Which of the following is the correct way to declare a task using static allocation in FreeRTOS?
xTaskCreateStatic for static allocation, requiring stack and task buffers.xTaskCreateStatic(TaskFunction, "Task", 100, NULL, 1, stackBuffer, &taskBuffer); correctly passes stackBuffer and taskBuffer pointers. xTaskCreate uses dynamic allocation. There is no xTaskCreateDynamic function. Passing NULL buffers is incorrect.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions