Files
iot_skeleton/esp32/main/main.cpp
2026-04-03 23:28:02 +03:00

20 lines
370 B
C++

#include "system_init.h"
#include "protocol_test.h"
#include "freertos/FreeRTOS.h"
#include "freertos/projdefs.h"
#include "freertos/task.h"
static const char* TAG = "iot_fish";
extern "C" void app_main(void)
{
system_init();
for (int i=0; i<10; i++)
{
protocol_run_tests();
vTaskDelay(pdMS_TO_TICKS(1000));
}
system_finalize();
}