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.
RF_Params_init(&RfParamsTX);
//Setting Tx Parameters
RF_cmdPropTx.pktLen = PAYLOAD_LENGTH;
RF_cmdPropTx.pPkt = RfPacketTx;
RF_cmdPropTx.startTrigger.triggerType = TRIG_NOW;
//Excute Tx CMD
RfHandleTx = RF_open(&RfObjectTx, &RF_prop, (RF_RadioSetup*)&RF_cmdPropRadioDivSetup, &RfParamsTX);
RF_postCmd(RfHandleTx, (RF_Op*)&RF_cmdFs, RF_PriorityNormal, NULL, 0);
RF_EventMask result = RF_runCmd(RfHandleTx, (RF_Op*)&RF_cmdPropTx, RF_PriorityNormal, NULL, 0);
运行到最邱中一句时会出错,提示“Unknown CPU status”, 一直找不到原因?
RF_EventMask result = RF_runCmd(RfHandleTx, (RF_Op*)&RF_cmdPropTx, RF_PriorityNormal, NULL, 0); 程序卡在这一句, 目前用的是2021年的CC1310出现了这种问题, 改用19年的CC1310运行都很正常!!!