FreeRTOS - Task Scheduling
Consider the following FreeRTOS task code snippet:
What is the expected interval between each "Heartbeat" print?
TickType_t xLastWakeTime = xTaskGetTickCount();
for (;;) {
vTaskDelayUntil(&xLastWakeTime, pdMS_TO_TICKS(250));
printf("Heartbeat\n");
}What is the expected interval between each "Heartbeat" print?
