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?