FreeRTOS - Task Scheduling
Consider this code snippet inside a FreeRTOS task:
for (;;) {
printf("Tick\n");
vTaskDelay(100);
}
If the tick rate is 1 kHz (1 ms per tick), what is the approximate time between each "Tick" print?