Tool/software:
Dear TI Team,
I would like to inquire about the last stage in the Doppler DPU, specifically the log2 magnitude computation.
We can observe the following configuration:
hwaParamCfg[paramsetIdx].source.srcAcnt = 2 * (cfg->staticCfg.numDopplerChirps) - 1;
This is because there are two range bins, so:
- R0: DopplerBin 0 ~ 127
- R1: DopplerBin 0 ~ 127
The goal is to apply log2 magnitude to all Doppler bins across these two ranges, ensuring that the detection matrix is in log scale.
However, I noticed that dstAcnt
is configured as:
hwaParamCfg[paramsetIdx].dest.dstAcnt = 2 * (cfg->staticCfg.numVirtualAntennas * cfg->staticCfg.numDopplerChirps) - 1;
I would like to ask why dstAcnt
is additionally multiplied by cfg->staticCfg.numVirtualAntennas
?
Thank you for your clarification.
Best regards,
Yuri