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.

IWR1843: outbox工程自启动

Part Number: IWR1843

将outbox工程改自启动之后出现下面问题的原因是什么,硬件的原因会导致这个问题的出现吗,用TI demo板没有出现这个问题

[2023-05-25 17:55:08.656]# RECV ASCII>
HXL573,calibDcRangeSig
mmwDemo:/>HXL573,extendedMaxVelocity
mmwDemo:/>HXL573,lvdsStreamCfg
mmwDemo:/>HXL573,compRangeBiasAndRxChanPhase
mmwDemo:/>HXL573,measureRangeBiasAndRxChanPhase
mmwDemo:/>HXL573,CQRxSatMonitor
mmwDemo:/>HXL573,CQSigImgMonitor
mmwDemo:/>HXL573,analogMonitor
mmwDemo:/>HXL573,aoaFovCfg
mmwDemo:/>HXL573,cfarFovCfg
mmwDemo:/>HXL573,cfarFovCfg
mmwDemo:/>HXL573,calibData
mmwDemo:/>

[2023-05-25 17:55:08.732]# RECV ASCII>
Debug: Init Calibration Status = 0xdfe
Exception: ../mss_main.c, line 3180.

下面是../mss_main.c, line 3180.的代码

/* Start the mmWave module: The configuration has been applied successfully. */
if (MMWave_start(gMmwMssMCB.ctrlHandle, &calibrationCfg, &errCode) < 0)
{
MMWave_ErrorLevel errorLevel;
int16_t mmWaveErrorCode;
int16_t subsysErrorCode;

/* Error/Warning: Unable to start the mmWave module */
MMWave_decodeError (errCode, &errorLevel, &mmWaveErrorCode, &subsysErrorCode);
System_printf ("Error: mmWave Start failed [mmWave Error: %d Subsys: %d]\n", mmWaveErrorCode, subsysErrorCode);
/* datapath has already been moved to start state; so either we initiate a cleanup of start sequence or
assert here and re-start from the beginning. For now, choosing the latter path */
MmwDemo_debugAssert(0);  //line 3180
return -1;
}