123456789101112131415161718192021 |
- /**
- * @Author: 李建
- * @Date: 2025/3/26 14:21
- * Description: OTA功能实现
- * Copyright: Copyright (©) 2025 永续绿建. All rights reserved.
- */
- #ifndef WIRE_CONTROLLER_OTA_H
- #define WIRE_CONTROLLER_OTA_H
- typedef struct {
- char version[64];
- char url[256];
- uint32_t fileSize;
- } ota_info_t;
- /**
- * 初始化OTA组件
- */
- void ota_init(void);
- #endif //WIRE_CONTROLLER_OTA_H
|