FreeRTOS - Task Priorities
Which of the following is the correct syntax to change a task's priority using vTaskPrioritySet()?
TaskHandle_t xTaskHandle; // Change priority to 3 _____;
Which of the following is the correct syntax to change a task's priority using vTaskPrioritySet()?
TaskHandle_t xTaskHandle; // Change priority to 3 _____;
vTaskPrioritySet(TaskHandle_t xTask, UBaseType_t uxNewPriority), so the task handle comes first, then the new priority.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions