FreeRTOS - Design Patterns for RTOS
Examine this heartbeat task code:
What is the issue with this implementation?
void HeartbeatTask(void *pvParameters) {
while(1) {
printf("Heartbeat\n");
vTaskDelay(1000);
}
}What is the issue with this implementation?
