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.

关于simplelink_cc2640r2_sdk_1_50_00_58 的simple_peripheral_oad_offchip范例问题

Other Parts Discussed in Thread: CC2640R2F

大家好:

         我使用simplelink_cc2640r2_sdk_1_50_00_58里面的off-chip oad 工程"simple_peripheral_oad_offchip", 按照官方提供的OAD开发文档,对三个项目文件(bim,stack,app)依次进行编译下载到TI LaunchPad 芯片是cc2640r2f ,我在bim_main的末尾点亮LED灯,当重新给LaunchPad上电后发现使用BLE Scanner扫描不到蓝牙设备,但是LED灯是被点亮的。我认为是bim跳转出错了,请问大家知道这个问题怎么解决吗?

void main(void)
{
#ifdef CREATE_FACT_IMG_INT_TO_EXT_FLSH

    extFlashOpen();
    const ExtFlashInfo_t *pExtFlashInfo = extFlashInfo();
    extFlashClose();
    uint32_t dstAddr = FLASH_PAGE(pExtFlashInfo->deviceSize - EFL_SIZE_FACT_IMAGE)*HAL_FLASH_PAGE_SIZE;
    Bim_createFactoryImageBackup(INTFLASH_BLE_APP_ADDR,
                                 EFL_SIZE_FACT_IMAGE,
                                 dstAddr);
#endif /* CREATE_FACT_IMG_INT_TO_EXT_FLSH */

#ifdef TEST_IMG_COPY
    uint8_t rtn = testImgCopy();
    if(rtn)
    {
        Bim_checkImages();
    }
#endif /* TEST_IMG_COPY */

    Bim_checkImages();
    IOCPinTypeGpioOutput(IOID_6);      //点亮LED灯
}