FreeRTOS - RTOS Fundamentals
Given this code snippet:
What is the expected value of
TickType_t start = xTaskGetTickCount(); vTaskDelay(10); TickType_t end = xTaskGetTickCount(); TickType_t diff = end - start;
What is the expected value of
diff?