Hi all,
I try to add OTA function on our own board but we always get "OTA abort" when start. In debug mode, the system hit "return ZCL_STATUS_ABORT" in zcl_ota.c --> zclOTA_ProcessImageData() --> case OAD_GET_IMAGE_HDR_STATE: -->
//is a valid header
if(memcmp(&oad_imgHdrFactoryNew.fixedHdr.imgID, oad_externalFLashID, sizeof(oad_externalFLashID)) != 0)
{
flash_close();
//This release does not support not having the Factory New image
return ZCL_STATUS_ABORT;
}
If I disable this checking, the OTA can work correctly. My question is : Can I ignore this checking? Thanks
SW : simplelink_cc13x2_sdk_2_30_00_45