FreeRTOS - Task Scheduling
Given the code snippet below, what will be the approximate delay between each "Task running" print?
TickType_t xLastWakeTime;
xLastWakeTime = xTaskGetTickCount();
for (;;) {
vTaskDelayUntil(&xLastWakeTime, pdMS_TO_TICKS(1000));
printf("Task running\n");
}