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.

TDA4VM: CSITX verify

Part Number: TDA4VM

Hi  Ti

We have added the csitx node to the application according to test_csitx_csirx.c.

But the app is stuck in the verify phase.

Params we used as followed:

 tivx_csitx_params_init(&csitxObj->params);
    csitxObj->params.numInst = 1U;
    csitxObj->params.numCh = NUM_CHANNELS;
    csitxObj->params.instId[0U= CSITX_INST_ID;
    csitxObj->params.instCfg[0U].rxCompEnable = (uint32_t)vx_true_e;
    csitxObj->params.instCfg[0U].rxv1p3MapEnable = (uint32_t)vx_true_e;
    csitxObj->params.instCfg[0U].laneBandSpeed = TIVX_CSITX_LANE_BAND_SPEED_770_TO_870_MBPS;
    csitxObj->params.instCfg[0U].numDataLanes = 4U;
    for (loopCnt = 0U;
         loopCnt < csitxObj->params.instCfg[0U].numDataLanes;
         loopCnt++)
    {
        csitxObj->params.instCfg[0U].lanePolarityCtrl[loopCnt] = 0u;
    }
    for (loopCnt = 0U; loopCnt < NUM_CHANNELS; loopCnt++)
    {
        csitxObj->params.chVcNum[loopCnt] = loopCnt;
        csitxObj->params.chInstMap[loopCnt] = CSITX_INST_ID;
    }

    csitxObj->config = vxCreateUserDataObject(context, "tivx_csitx_params_t"
                        sizeof(tivx_csitx_params_t), &csitxObj->params);

……

……

……

csitxObj->node = tivxCsitxNode(graph, csitxObj->configcsitxObj->raw_image_arr);
    status = vxGetStatus((vx_reference)csitxObj->node);
    vxSetNodeTarget(csitxObj->node, VX_TARGET_STRING, TIVX_TARGET_CSITX);
    vxSetReferenceName((vx_reference)csitxObj->node"csitx_node");

Can you give some advice to handle this problem?

Best Regards