About labs: 68xx_area_scanner
Why doesn't it need to be execute Range FFT?
Do you have the algorithm documentation to us?
Like the following document http://www.ti.com/tool/TIDEP-01000
objectdetection.c , line2437
/*==============================================
Chirp Processing
===============================================*/
#ifndef OBJDET_NO_RANGE
if (((objDetObj->chirpIndex % subFrmObj->staticCfg.numChirpsPerFrame)== 0) &&
(processCallBack->processFrameBeginCallBackFxn != NULL))
{
(*processCallBack->processFrameBeginCallBackFxn)(objDetObj->subFrameIndx);
}
retVal = DPU_RangeProcDSP_process(subFrmObj->dpuRangeObj, &outRangeProc);
if (retVal != 0)
{
goto exit;
}
objDetObj->chirpEndTime = Cycleprofiler_getTimeStamp();
/* Chirp is processed, increse chirpIndex */
objDetObj->chirpIndex += numChirpsPerChirpEvent;
if (outRangeProc.endOfChirp == true)
#endif