Tool/software:
Hi
I am working with the OOB project.
I set the sensor configuration with channelCfg 1 1 0 (rx 0, tx 0) and run it for some time.
Then stop the sensor and change the configuration to 2nd rx - channelCfg 2 1 0
When sending sensorStart I get exception on mmw_cli:
/* openCfg related configurations like chCfg, lowPowerMode, adcCfg
* are only used on the first sensor start. If they are different
* on a subsequent sensor start, then generate a fatal error
* so the user does not think that the new (changed) configuration
* takes effect, the board needs to be reboot for the new
* configuration to be applied.
*/
MMWave_OpenCfg openCfg;
CLI_getMMWaveExtensionOpenConfig (&openCfg);
/* Compare openCfg->chCfg*/
if(memcmp((void *)&gMmwMssMCB.cfg.openCfg.chCfg, (void *)&openCfg.chCfg,
sizeof(rlChanCfg_t)) != 0)
{
MmwDemo_debugAssert(0);
}
Same happens when trying to change the Tx settings.
Is there a way to change the Tx or Rx config without power cycle?
Best regards