image start offset

This commit is contained in:
2021-01-06 18:10:12 +01:00
parent 91edfa0c63
commit 076c4b62fc
6 changed files with 1033 additions and 153 deletions

View File

@ -55,7 +55,7 @@ typedef int32_t https_client_ret_t;
typedef struct HTTPS_Client HTTPS_Client_t;
https_client_ret_t https_clientInitialize();
https_client_ret_t https_clientRetrieveData();
https_client_ret_t https_clientRetrieveData(unsigned char* pu8Data, uint32_t* pu32DataLenght, uint32_t* pu32BytesRead);
https_client_ret_t https_clientDeinitialize();
#endif /* H_HTTPS_CLIENT */

View File

@ -15,7 +15,8 @@
#include "https_client.h"
bool bNewerVersion(const char* pu8Local, const char* pu8Remote);
bool bNewerVersion(const char* pu8Local, const char* pu8Remote);
esp_err_t errExtractVersionNumber(unsigned char* pu8Data, uint32_t* pu32DataLenght, char* pc8RemoteVersionNumber);
#endif /* H_MESH_OTA */