FreeRTOS - Task Creation and Management
What is wrong with this FreeRTOS task creation code snippet?
void vTask(void *pvParameters) { /* code */ }
xTaskCreate(vTask, "Task", 1000, NULL, 5, NULL);
xTaskCreate(vTask, "Task", 1000, NULL, -1, NULL);What is wrong with this FreeRTOS task creation code snippet?
void vTask(void *pvParameters) { /* code */ }
xTaskCreate(vTask, "Task", 1000, NULL, 5, NULL);
xTaskCreate(vTask, "Task", 1000, NULL, -1, NULL);15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions