2019-10-29 11:21:07 +00:00
|
|
|
#include <stdio.h>
|
2016-09-25 19:17:59 +00:00
|
|
|
#include "freertos/FreeRTOS.h"
|
2019-10-29 11:21:07 +00:00
|
|
|
#include "freertos/task.h"
|
2016-09-25 19:17:59 +00:00
|
|
|
|
2019-08-08 01:58:26 +00:00
|
|
|
|
2019-11-14 14:09:27 +00:00
|
|
|
void app_main(void)
|
2019-08-08 01:58:26 +00:00
|
|
|
{
|
2019-10-29 11:21:07 +00:00
|
|
|
int i = 0;
|
|
|
|
while (1) {
|
|
|
|
printf("[%d] Hello world!\n", i);
|
|
|
|
i++;
|
|
|
|
vTaskDelay(5000 / portTICK_PERIOD_MS);
|
2016-09-25 19:17:59 +00:00
|
|
|
}
|
|
|
|
}
|