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.

CC1352P: Is there any side effect if I disable "valid header" checking

Part Number: CC1352P

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