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.

IWR1443: call to rlRfRxSigImgMonConfig failed

Part Number: IWR1443

Hi,

I try to use CQ configuring code from mmwDemo in my code.

rlRfAnaMonConfig returns 0. It is Ok.

But rlRfRxSigImgMonConfig returns 254, Monitoring profile ID is not configured yet.

What function should I call to configure profile ID?

Regards,
Gennadii


memset( &analogMonCfg, 0, sizeof(rlMonAnaEnables_t) );

analogMonCfg.enMask |= 0x1 << MMWDEMO_ANALOG_MONITOR_RX_SATURATION_DETECTOR;
analogMonCfg.enMask |= 0x1 << MMWDEMO_ANALOG_MONITOR_RX_SIG_IMG_BAND;

retVal = rlRfAnaMonConfig(RL_DEVICE_MAP_INTERNAL_BSS, &analogMonCfg);

memset( &sigImgMonCfg, 0, sizeof(rlSigImgMonConf_t) );

sigImgMonCfg.profileIndx                     = 0;
sigImgMonCfg.numSlices                     = 111;
sigImgMonCfg.timeSliceNumSamples = 4;


retVal = rlRfRxSigImgMonConfig(RL_DEVICE_MAP_INTERNAL_BSS, &sigImgMonCfg);