ota.h 394 B

123456789101112131415161718192021
  1. /**
  2. * @Author: 李建
  3. * @Date: 2025/3/26 14:21
  4. * Description: OTA功能实现
  5. * Copyright: Copyright (©) 2025 永续绿建. All rights reserved.
  6. */
  7. #ifndef WIRE_CONTROLLER_OTA_H
  8. #define WIRE_CONTROLLER_OTA_H
  9. typedef struct {
  10. char version[64];
  11. char url[256];
  12. uint32_t fileSize;
  13. } ota_info_t;
  14. /**
  15. * 初始化OTA组件
  16. */
  17. void ota_init(void);
  18. #endif //WIRE_CONTROLLER_OTA_H