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.

CC1310 进入EasyLink_init之后无法跑出来

Other Parts Discussed in Thread: CC1310

hi ti工程师:

我现在用自己做的板子调试(是CC1310 QFN32封装)的时候发现如下EasyLink_init函数之后就无法跑出来了,进入EasyLink_init函数 发现是卡在如下这句话:

    RF_runCmd(rfHandle, (RF_Op*)&EasyLink_cmdFs, RF_PriorityNormal, 0, //asyncCmdCallback,
            EASYLINK_RF_EVENT_MASK);

我的rf部分的初始化如下:

    EasyLink_Params easyLink_params; //RF初始化处理
    EasyLink_Params_init(&easyLink_params);
    /*
     * Initialize EasyLink with the settings found in easylink_config.h
     * Modify EASYLINK_PARAM_CONFIG in easylink_config.h to change the default
     * PHY
     */
    if (EasyLink_init(&easyLink_params) != EasyLink_Status_Success)
 {
        while(1);
    }