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.

CCS/IWR6843ISK-ODS: Vital Sign for chirp Bandwidth

Part Number: IWR6843ISK-ODS

Tool/software: Code Composer Studio

In Vital Signs 68xx Demo, the chirpBandwidth_MHz is calculated in MmwDemo_parseProfileAndChirpConfig() as below.

dataPathObj->chirpBandwidth_kHz = (48*profileCfg.freqSlopeConst)*(dataPathObj->chirpDuration_us );

But I don't know why it multiply 48.
I want to know is it OK if I change the code as below. 

dataPathObj->chirpBandwidth_kHz = (profileCfg.freqSlopeConst) * ((2.7*1e3*900) / (1U << 26))*(dataPathObj->chirpDuration_us );

Thanks!