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.

CC2650 bootloader BIM问题

我尝试在bootloader程序中加入     

asm(" MOV R0, #0x6014 ");      

asm(" LDR R0, [R0] ");      

asm(" BX R0 ");

下载到开发板,

然后尝试使用Flash Programmer 2软件将应用APP.bin(点亮LED的小程序)烧写到0x6000地址处,但是程序没有到0x6000处执行,我需要设置什么吗

.icf文件只设置了:

define symbol FLASH_START       = 0x00006000;    

define symbol FLASH_END           = FLASH_START + 0x8FFF;

仿真BIM程序查看 跑到了Fault handler 这块一直循环 地址为:0x1fxxx这里 一直停在这里,

求助 这是什么原因啊。