This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CC2530: OTA 升级 100% 后提示镜像不可用,升级失败

Part Number: CC2530
Other Parts Discussed in Thread: Z-STACK

定位问题发现进到了这段代码,就是镜像发送完毕后,CRC校验出错!但是我用的是TI官方的程序,不只是审议原因造成的?盼回复

// When the image is complete, verify CRC
if ( HalOTAChkDL ( HAL_OTA_CRC_OSET ) != SUCCESS )
{
#if (defined HAL_LCD) && (HAL_LCD == TRUE)
HalLcdWriteString ( "OTA CRC Fail", HAL_LCD_LINE_3 );
#endif
whytest = 6;
return ZCL_STATUS_INVALID_IMAGE;
}
}