使用 BPM 清除功能配置 HWA (模式:HWA)时。
bpmPattern / bpmRate / bpmPhase / bpmEnable 参数不影响 HWA 的结果。
是否已检查毫米波 SDK 3中的"BPM 移除"模式? 如果是、如何获取正确配置的示例?
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.
使用 BPM 清除功能配置 HWA (模式:HWA)时。
bpmPattern / bpmRate / bpmPhase / bpmEnable 参数不影响 HWA 的结果。
是否已检查毫米波 SDK 3中的"BPM 移除"模式? 如果是、如何获取正确配置的示例?
您好! 感谢您的回答。
对于 BPM 测试、我使用了 MMWAVE_SDK_03_04_00_03\packages/ti\datapath\DPC\DPU\dopplerproc\src\dopplerprochwa.c 模块
有以下差异:
在函数 DPU_DopplerProcHWA_configHWA ()中、设置 hwaParamCfg [paramsetIdx].source.bpmEnable = 1;
在 DPU_DopplerProcHWA_Process ()函数中、在调用 HWA CONFIGCommon ()函数之前、我添加了:
hwaCommonConfig.fftConfig.bpmPattern [0]= 0x11111111;
hwaCommonConfig.fftConfig.bpmPattern [1]= 0x22222222;
hwaCommonConfig.fftConfig.bpmRate = 1;
HWA 文档提供了一种通过窗口覆盖实现 BPM 的替代方法。 我决定使用这种方法。 结果适合我。
谢谢你。