FreeRTOS - Task Creation and Management
Which of the following is the correct way to assign a priority of 3 to a task in FreeRTOS using xTaskCreate?
void vTaskFunction(void *pvParameters) { /* Task code */ }
xTaskCreate(vTaskFunction, "Task1", 1000, NULL, ?, NULL);