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