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.

IWRL6432: Range resolution calculation in motion and presence detection

Part Number: IWRL6432

Hi TI experts,

In the 'motion and presence detection' of SDK 5.4.0.1, in dpc.c, line 1649 calculates params->rangeStep as follows:
params->rangeStep = (MMWDEMO_RFPARSER_SPEED_OF_LIGHT_IN_METERS_PER_SEC * (gMmwMssMCB.adcSamplingRate * 1.e6)) / (2.f * slope * (2*params->numRangeBins));

If I change the calculation to:
params->rangeStep = (MMWDEMO_RFPARSER_SPEED_OF_LIGHT_IN_METERS_PER_SEC * gMmwMssMCB.adcSamplingRate * 1e6) / (2.f * slope * gMmwMssMCB.profileComCfg.h_NumOfAdcSamples);

Would there be any issues?