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.

AWR1843BOOST: Why Demo code doesn't support mutiple bursts in advanced frame config profile?

Part Number: AWR1843BOOST

Hello,

I want to use 4 bursts per sub frame in the advanced frame profile configuration.But i have noticed some checks in the code telling that the demo code supports only one burst per sub frame.

code snippet from ti\mmwave_sdk_03_01_01_02\packages\ti\demo\utils\mmwave_rfparser.c

/* TODO::Advance Frame only support one burst - chain limitation,  */
    if (ctrlCfg->dfeDataOutputMode == MMWave_DFEDataOutputMode_ADVANCED_FRAME)
    {
        if(ctrlCfg->u.advancedFrameCfg.frameCfg.frameSeq.subFrameCfg[subFrameIdx].numOfBurst != 1)
        {
            retVal = MMWDEMO_RFPARSER_ENOTSUPPORT__NON_ONE_NUMOFBURST_FOR_ADVANCED_FRAME;
            goto exit;
        }
    }

 

Is it possible to change the number of bursts?