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?