Prepare OTA execution

This commit is contained in:
2024-10-05 20:28:55 +02:00
parent 80452e10de
commit f4dda44d15
5 changed files with 61 additions and 2 deletions

7
esp32_device/main/ota.c Normal file
View File

@ -0,0 +1,7 @@
#include "ota.h"
bool ota_perform_update(const char *version)
{
// TODO
return false;
}