Hi,
Here's the context, I want to change profileCfg (specificly, the tx phaseshift) dynamicly after sensor start, I'm developing on top of the 68xx vitalsigns lab, the toolbox version is 4.10.1, the sdk version is 3.5.0.4. In my reconfig_function, I sequentially called MmwDemo_mssDataPathStop -> MMWave_getProfileHandle -> MMWave_getProfileCfg to stop sensor and get profileCfg, and then MMWave_getChirpHandle -> MMWave_getChirpCfg to get chirp configuration bound to it, and then modify phaseshift in profileCfg, then MMWave_delProfile-> MMWave_addProfile -> MMWave_addChirp, then finally MMWave_config.
Something went wrong when I call MMWave_config(), the decodeError() API give me 'mmWaveError -3110, subSysError 83', I can see mmWaveError is well defined in mmWave API document, ' mmWaveError -3110 ' is defined as MMWAVE_EFRAMECFG, and I can see it's frameCfg related, but I only changed profileCfg, the frameCfg is same as the first time the sensor is started, and there's no problem with the first startup.
What does 'subSysError 83' mean? How can I locate the error using the subSysError code? Am I doing this (reconfig profile at runtime) in the right way? If not, what am I supposed to do?
Best regards.