关于mmwave_dfp_02中mmWaveLink_Cascade_Example例程的一些疑问

1.在参数配置文件《mmwaveconfig》中包含多个设置调频斜率等参数的语句,请问真正起作用的是哪一块?

#
#Profile config parameters, please modify if needed.
#rlProfileCfg_t
#
profileId=1;
pfVcoSelect=2;
startFreqConst=1439117143;
idleTimeConst=1000;
adcStartTimeConst=700;
rampEndTime=6000;
txOutPowerBackoffCode=0;
txPhaseShifter=0;
freqSlopeConst=621;
txStartTime=0;
numAdcSamples=256;
digOutSampleRate=10000;
hpfCornerFreq1=0;
hpfCornerFreq2=0;
rxGain=30;
#END

#
#Profile config parameters, please modify if needed.
#rlProfileCfg_t
#
profileId=2;
pfVcoSelect=2;
startFreqConst=1439117143;
idleTimeConst=1000;
adcStartTimeConst=800;
rampEndTime=6000;
txOutPowerBackoffCode=0;
txPhaseShifter=0;
freqSlopeConst=621;
txStartTime=0;
numAdcSamples=256;
digOutSampleRate=10000;
hpfCornerFreq1=0;
hpfCornerFreq2=0;
rxGain=30;
#END

2.请问“startFreqConst=1439117143”和“freqSlopeConst=621”对应的以GHz和MHz/us为单位的值为多少,应该如何计算?

3.“AdvChirpLUT_FreqSlopeConfig_Data1=-0.050”与“freqSlopeConst=621”中的slope有什么区别?

  • 你好,

    1. 在chirpcfg里面有设置使用哪个profile,请参考DFP包里的mmWave-Radar-Interface-Control.pdf文档Table 5.22: AWR CHIRP CONF SET SB contents里的Profile_index参数。

    2. 请参考DFP包里的mmWave-Radar-Interface-Control.pdf文档的下面内容:

    Table 5.20
    PF FREQ
    START CONST
    4 Start frequency for this profile
    For 77GHz Devices (76GHz to 81Ghz):
    1 LSB = 3:6e9=226 Hz 53.644 Hz
    Valid range: 0x5471C71B to 0x5A000000
    For 60GHz Devices (57GHz to 64Ghz):
    1 LSB = 2:7e9=226 Hz 40.233 Hz
    Valid range: 0x5471C71C to 0x5ED097B4

    3. 请参考下面文档,了解advance frame和普通frame的区别。

    Programming Chirp Parameters in TI Radar Devices (SWRA553A)

  • 非常感谢您的指导!