FreeRTOS - Task Scheduling
Examine the following FreeRTOS code snippet:
What is the primary issue with this code?
TickType_t lastWakeTime;
for (;;) {
vTaskDelayUntil(lastWakeTime, pdMS_TO_TICKS(100));
}What is the primary issue with this code?
