mirror of
https://github.com/meshtastic/firmware.git
synced 2026-01-20 08:47:31 +00:00
* Initial commit of combined BLE and WiFi OTA * Incorporate ota_hash in AdminMessage protobuf * OTA protobuf changes * Trunk fmt * Partition header check for OTA type * Guards * Guards * Derp * Missed one --------- Co-authored-by: Jake-B <jake-b@users.noreply.github.com>
27 lines
722 B
C++
27 lines
722 B
C++
#ifndef MESHTASTICOTA_H
|
|
#define MESHTASTICOTA_H
|
|
|
|
#include "mesh-pb-constants.h"
|
|
#include <Arduino.h>
|
|
#ifdef ESP_PLATFORM
|
|
#include <esp_ota_ops.h>
|
|
#endif
|
|
|
|
#define METHOD_OTA_BLE 1
|
|
#define METHOD_OTA_WIFI 2
|
|
|
|
namespace MeshtasticOTA
|
|
{
|
|
void initialize();
|
|
bool isUpdated();
|
|
const esp_partition_t *getAppPartition();
|
|
bool getAppDesc(const esp_partition_t *part, esp_app_desc_t *app_desc);
|
|
bool checkOTACapability(esp_app_desc_t *app_desc, uint8_t method);
|
|
void recoverConfig(meshtastic_Config_NetworkConfig *network);
|
|
void saveConfig(meshtastic_Config_NetworkConfig *network, meshtastic_OTAMode method, uint8_t *ota_hash);
|
|
bool trySwitchToOTA();
|
|
const char *getVersion();
|
|
} // namespace MeshtasticOTA
|
|
|
|
#endif // MESHTASTICOTA_H
|