HB, OTA etc

This commit is contained in:
2026-04-22 20:11:55 +03:00
parent 4100931deb
commit cb1014c950
76 changed files with 3157 additions and 232 deletions

View File

@@ -1,5 +1,6 @@
#include "esp_log.h"
#include "system_init.h"
#include "heartbeat_task.h"
#include "freertos/FreeRTOS.h"
#include "freertos/projdefs.h"
#include "freertos/task.h"
@@ -13,8 +14,10 @@ extern "C" void app_main(void)
{
system_init();
sampler_task_start();
sender_task_start();
//sampler_task_start();
//sender_task_start();
heartbeat_task_start();
system_finalize();
}