I'm trying to run the Vital Signs Demo of xWR6843 from Industrial Toolbox 4.6 using IWR1843,in the CCS project, the following changes have been made:
1.Change the Variant in the properties of the dss file and mss file to IWR1843:
But I cannot change the Linker command file to: xwr1843_C674x.cmd, otherwise it will fail to compile.I want to ask how should I change it?
2.After entering the debug mode, I changed the starting frequency in the profile.cfg file to meet the starting frequency of IWR1843, and I ran the GUI, but still reported an error:
* Setup the RF Calibration Frequency limit:
****************************************************************************************/
freqLimit.freqLimitLow = ptrMMWaveMCB->openCfg.freqLimitLow;
freqLimit.freqLimitHigh = ptrMMWaveMCB->openCfg.freqLimitHigh;
retVal = rlRfSetCalMonFreqLimitConfig(RL_DEVICE_MAP_INTERNAL_BSS, &freqLimit);
if (retVal != RL_RET_CODE_OK)
{
/* Error: Frequency Limit Calibration */
*errCode = MMWave_encodeError (MMWave_ErrorLevel_ERROR, MMWAVE_ECALCFG, retVal);
retVal = MINUS_ONE;
goto exit;
}