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?