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:代码卡在 PIN_INIT ()

Guru**** 1821780 points
Other Parts Discussed in Thread: CC1310
请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/wireless-connectivity/sub-1-ghz-group/sub-1-ghz/f/sub-1-ghz-forum/1429391/cc1310-code-stuck-at-pin_init

器件型号:CC1310

工具与软件:

您好!

   我将 CC1310与 SDK 版本 simplelink_cc13x0_sdk_4_20_02_07和 uartecho 示例配合使用  、但 void Board_init (void)函数 PIN_init (BoardGpioInitTable)中的问题 不会返回成功并在该时间之后卡住

void CC1310_LAUNCHXL_initGeneral(void)
{
    Power_init();

   if (PIN_init(BoardGpioInitTable) != PIN_SUCCESS) {
        /* Error with PIN_init */
        while (1);
   }

    /* Perform board-specific initialization */
    Board_initHook();
}

/*
 *  ======== Board_init ========
 */
void Board_init(void)
{
    CC1310_LAUNCHXL_initGeneral();
}