14 lines
494 B
C
14 lines
494 B
C
#ifndef NET_WIFI_OTA_H
|
||
#define NET_WIFI_OTA_H
|
||
|
||
#include "main.h"
|
||
#include <stdint.h>
|
||
|
||
/* WiFi 通道 OTA:透传 TCP 上软件实现 HTTP 下载固件到 W25Q64 槽 B,
|
||
* 校验/信息区/复位进 BL 的流程与 4G OTA(air780e_trigger_ota) 对齐。
|
||
* 成功后内部直接复位;失败返回后恢复正常业务。 */
|
||
void net_wifi_ota(const char *host, int port, const char *path,
|
||
const char *ota_id, uint16_t new_ver, uint16_t crc16);
|
||
|
||
#endif /* NET_WIFI_OTA_H */
|