LilyGo_T_Ethernet_Playground/main/main.c

21 lines
312 B
C

#include <stdio.h>
/* FreeRTOS */
/* clang-format off */
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
/* clang-format on */
/* App */
#include "app_net.h"
void app_main(void) {
printf("Hello world!\n");
app_net_init();
for (;;) {
/* -- */
vTaskSuspend(NULL);
}
}