Files
central_backend
central_frontend
custom_consumption
docs
esp32_device
.devcontainer
.vscode
docs
main
CMakeLists.txt
constants.h
crypto.c
crypto.h
dev_name.c
dev_name.h
ethernet.c
ethernet.h
http_client.c
http_client.h
jwt.c
jwt.h
main.c
ota.c
ota.h
random.c
random.h
relays.c
relays.h
secure_api.c
secure_api.h
storage.c
storage.h
sync_response.c
sync_response.h
system.c
system.h
unsecure_api.c
unsecure_api.h
.gitignore
CMakeLists.txt
README.md
build_upload_dev.sh
sdkconfig
sdkconfig.old
version.txt
python_device
.drone.yml
LICENSE
Makefile
README.md
renovate.json
SolarEnergy/esp32_device/main/ota.h
2024-10-05 20:28:55 +02:00

25 lines
323 B
C

/**
* OTA functions
*/
#pragma once
#include <stddef.h>
#include <stdbool.h>
#ifdef __cplusplus
extern "C"
{
#endif
/**
* Update device to a desired version
*
* Returns TRUE in case of success / FALSE otherwise
*/
bool ota_perform_update(const char *version);
#ifdef __cplusplus
}
#endif