FreeRTOS - RTOS Fundamentals
Which FreeRTOS API call correctly creates a task that runs the function
SensorTask with priority 3?SensorTask with priority 3?BaseType_t xTaskCreate(TaskFunction_t pxTaskCode, const char * const pcName, configSTACK_DEPTH_TYPE usStackDepth, void *pvParameters, UBaseType_t uxPriority, TaskHandle_t *pxCreatedTask);SensorTask, task name as string, stack size, NULL parameters, priority 3, and NULL for handle.Sensor instead of string for task name.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions