Other Parts Discussed in Thread: AWR2944
Tool/software:
Hi
I use test_print() to print variable value in objectdetection.c in CCS debug session. It's only print once, but I expected it should always print every frames. Can you please help to check it?
Radar board: AWR2944 Evaluation Module
radar toolbox version: v2_30_00_12
example: source\ti\examples\Out_Of_Box_Demo\src\awr294x
int32_t DPC_ObjectDetection_execute(){
…
retVal = DPU_CFARProcHWA_process(subFrmObj->dpuCFARObj, &outCfarProc);
if (retVal != 0)
{
goto exit;
}
DebugP_log("ObjDet DPC: number of detected objects after CFAR = %d\n",
outCfarProc.numCfarDetectedPoints);
test_print("ObjDet DPC: number of detected objects after CFAR = %d\n",
outCfarProc.numCfarDetectedPoints);}
}
The execution result in CCS console:
Thanks.