瀏覽代碼

fix:加密的部分超过64KB下载会失败

alienwalker 3 年之前
父節點
當前提交
1def200874
共有 2 個文件被更改,包括 9 次插入1 次删除
  1. 9 1
      bsp/air105/platform/bl_main.c
  2. 二進制
      project/air105/soc_download.exe

+ 9 - 1
bsp/air105/platform/bl_main.c

@@ -548,7 +548,15 @@ void Remote_Upgrade(void)
 				ReadLen += ReadBuffer.Pos;
 
 				prvBL.FWDataBuffer.Pos = __FLASH_BLOCK_SIZE__;
-				Result = LzmaUncompress(prvBL.FWDataBuffer.Data, &prvBL.FWDataBuffer.Pos, ReadBuffer.Data, &LzmaDataLen, LzmaHead, LzmaHeadLen);
+				if (LzmaHead[0])
+				{
+					Result = LzmaUncompress(prvBL.FWDataBuffer.Data, &prvBL.FWDataBuffer.Pos, ReadBuffer.Data, &LzmaDataLen, LzmaHead, LzmaHeadLen);
+				}
+				else
+				{
+					prvBL.FWDataBuffer.Pos = LzmaDataLen;
+					memcpy(prvBL.FWDataBuffer.Data, ReadBuffer.Data, LzmaDataLen);
+				}
 				while(Flash_CheckBusy()){;}
 				Flash_Program(ProgramPos, prvBL.FWDataBuffer.Data, prvBL.FWDataBuffer.Pos);
 				WDT_Feed();

二進制
project/air105/soc_download.exe