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.

CC2640R2F: 新建的simple_peripheral例程无法使用,程序卡在Pin_init

Part Number: CC2640R2F
Other Parts Discussed in Thread: CC2640, SYSCONFIG

使用CC2640做的小板子,在CCS下载了simple_peripheral后编译通过烧录后无法正常运行,程序卡在

/*
 *  ======== CC2640R2_LAUNCHXL_initGeneral ========
 */
void CC2640R2_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)
{
    CC2640R2_LAUNCHXL_initGeneral();
}

程序的引脚没有初始化完成。

另外请问CC2640是否有像CC2340一样的用户图像配置界面?如果有该怎么找到它?