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.

CCS/AWR1642: question about how to used the mmwave API

Part Number: AWR1642

Tool/software: Code Composer Studio

HI

i'm calling the mmwave api as below and wish to get the monitoing report :

rlRxNoiseMonConf_t  rxNoiseMoncfg;

void  MmwDemo_mssInitTask(void){

......

rxNoiseMoncfg.profileIndex = 0;
rxNoiseMoncfg.reportMode = 0;   //check periodic without threshold
rxNoiseMoncfg.noiseThresh = 250;
rxNoiseMoncfg.rfFreqBitMask = 1; //check the center

retval = rlRfRxNoiseMonConfig(RL_DEVICE_MAP_INTERNAL_BSS,(rlRxNoiseMonConf_t*)&rxNoiseMoncfg);

if(retVal!=0){
    system_printf("error");
    return -1;
}

system_printf("finished rx noise monitoring configurations into bss\n");

......
}

after that i check the bss async event in the function MmwDemo_mssMmwaveEventCallbackFxn(uint16_t msgId , uint16 sbId, uint16_t sbLen, uint8_t *payload)

i can recive the msgId = 80;(PL_RF_ASYNC_EVENT_MSG)

but i can never recive the asyncSB for RL_RF_AE_MON_RX_NOISE_FIG_REPORT.

did  i miss something or make some mistake?

please help to check that .

br

havi