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: Issues while implementing tracker alg on device

Part Number: AWR1843BOOST

Tool/software:

I am trying to implement the tracker algorithm with the OOB implementation. I am following Long Distance People Detection Demo for reference. 
Problem: The code hangs at MmwDemo_trackerConfig. 
I am providing all the required configs.

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
int32_t MmwDemo_trackerConfig(void)
{
int32_t errCode;
DebugP_log0("App: Issuing Tracker Static Config IOCTL\n");
/* DPC pre-start common config */
// errCode = DPM_ioctl (dataPathObj->objDetDpmHandle,
#ifdef TRACKERPROC_ON_DSP
errCode = MmwDemo_DPM_ioctl_blocking(gMmwMssMCB.objDetDpmHandle,
DPC_OBJDET_IOCTL__STATIC_TRACKER_CFG,
&(gMmwMssMCB.trackerCfg),
sizeof(DPC_ObjectDetection_TrackerConfig));
if (errCode < 0)
{
System_printf("Error: Unable to send DPC_OBJDET_IOCTL__TRACKER_STATIC_CFG [Error:%d]\n", errCode);
goto exit;
}
#else
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX