otaTask.lua 991 B

1234567891011121314151617181920212223242526272829
  1. module(...,package.seeall)
  2. require"nvm"
  3. local otaUrl = nvm.get("otaUrl")
  4. local otaCheckInterval = nvm.get("otaCheckInterval")
  5. --[[
  6. 使用Luat物联云平台的升级服务器时,按照如下步骤操作
  7. 1、在main.lua中定义PRODUCT_KEY变量
  8. 2、加载update模块 require"update"
  9. 3、调用update.request()即可
  10. ]]
  11. require"update"
  12. local function otaUpdateCb(result)
  13. if result then
  14. log.info("otaTask.otaUpdateCb","ota update download success, start reboot...")
  15. --用新的config.lua覆盖原来的参数文件
  16. --nvm.remove()
  17. sys.restart("UPDATE_DOWNLOAD_SUCCESS")
  18. else
  19. sys.publish("ota_update_check_end")
  20. log.info("otaTask.otaUpdateCb","ota update download failed!")
  21. end
  22. end
  23. update.request(otaUpdateCb,otaUrl,otaCheckInterval * 1000)
  24. sys.timerLoopStart(log.info,30000,"otaTask.timerLoopStart",rtos.get_version(),_G.VERSION,rtos.poweron_reason(),"Flash(Byte):",rtos.get_fs_free_size(),"RAM(KB):", collectgarbage("count"))