23 lines
370 B
C
23 lines
370 B
C
/*
|
|
* wifi_OTA.h
|
|
*
|
|
* Created on: Jul 31, 2023
|
|
* Author: Sword
|
|
*/
|
|
|
|
#ifndef WIFI_OTA_H_
|
|
#define WIFI_OTA_H_
|
|
|
|
typedef enum
|
|
{
|
|
OTA_IS_STOPPED,
|
|
OTA_IN_PROGRESS,
|
|
OTA_FATAL_ERROR,
|
|
OTA_COMPLETED
|
|
}wifi_ota_status_t;
|
|
|
|
void wifi_ota_start_firmware_update(char* device_imei);
|
|
wifi_ota_status_t wifi_ota_get_status(void);
|
|
|
|
#endif /* WIFI_OTA_H_ */
|