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: Understanding of rlRfGetTemperatureReport Function and Its Effect on Application Performance.

Part Number: AWR1843BOOST

Tool/software:

I've been trying to integrate the rlRfGetTemperatureReport function with the MRR lab, as shown in this Thread . However, when testing the lab on-field with a larger number of target objects, the Lab often crashes. If I increase the interframe processing time, these crashes are less frequent, although they still occur. I was curious about the timing requirements to call this API. Upon further investigation, I found that the rlRfGetTemperatureReport function uses the rlDriverExecuteGetApi function to execute the API, which in turn calls rlDriverCmdInvoke. This API tries to lock the globalMutex before writing into the outMsg. If the globalMutex  is not available, it waits until it becomes available. My question is, does this waiting state also block the whole application?

/* If Mutex lock is failed then return with error code */
        if (RL_RET_CODE_OK != rl_driverData.clientCtx.osiCb.mutex.rlOsiMutexLock
          (&(rl_driverData.globalMutex), (rlOsiTime_t)RL_OSI_WAIT_FOREVER))
        {
              /* If MutexLock returns non-zero then treat this as error and
                 set error code to retVal */
              retVal = RL_RET_CODE_RADAR_OSIF_ERROR;
        }
        else
        {.......
PS- I have tested this LAB on-field without this API call but it is not crashing