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.

IWRL6432BOOST: Issue with velocity resolution for lsdk in mmwave estimator app

Part Number: IWRL6432BOOST

Tool/software:

Hi,
I am using https://dev.ti.com/gallery/view/mmwave/mmWaveSensingEstimator/ver/2.5.0/ and seeing tooptip info for this enitity formula.





But the app backend code is as follows:

if (frameCfg5_NumOfBurstsInFrame > 1) {
// should be dividing by number of chirps per Tx
return ((2 * results_maxVelocity) / (frameCfg5_NumOfBurstsInFrame / deviceBoardParam_numTxAntennas));
}
else {
// We do not care about total # of chirps, just # of chirps per Tx
return ((2 * results_maxVelocity) / chirpParam_numChirpLoops);


That division by numTXAntennas was not there in tooltip also in java code for earlier mmwave estimator app code.

Can you confirm which is the correct formulation used?