mirror of
https://github.com/espressif/esp-idf-template.git
synced 2026-06-21 14:42:43 +00:00
15 lines
242 B
C
15 lines
242 B
C
#include <stdio.h>
|
|
#include "freertos/FreeRTOS.h"
|
|
#include "freertos/task.h"
|
|
|
|
|
|
void app_main(void)
|
|
{
|
|
int i = 0;
|
|
while (1) {
|
|
printf("[%d] Hello world!\n", i);
|
|
i++;
|
|
vTaskDelay(5000 / portTICK_PERIOD_MS);
|
|
}
|
|
}
|