FreeRTOS - Task Scheduling
Identify the error in this FreeRTOS task creation code snippet:
BaseType_t result = xTaskCreate(TaskFunc, "Task1", 500, NULL, 0, NULL);
if(result != pdPASS) {
// Handle error
}What is wrong with the priority value?
Identify the error in this FreeRTOS task creation code snippet:
BaseType_t result = xTaskCreate(TaskFunc, "Task1", 500, NULL, 0, NULL);
if(result != pdPASS) {
// Handle error
}What is wrong with the priority value?
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions