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.

cc2640程序烧录后不自动运行

Other Parts Discussed in Thread: CC2640

cc2640程序烧录后不自动运行,单步执行是功能又是对的。

下载器 XDS100V3, IAR程序如下,问题出在哪呢?

void main()
{
uint8_t i;
uint8_t test[150];
VIMSModeSet(VIMS_BASE, VIMS_MODE_DISABLED);
// Wait until it is
while(VIMSModeGet(VIMS_BASE) != VIMS_MODE_DISABLED);//disableCache();
for(i=0;i<150;i++)
test[i]=i+1; 
FlashProgram(test,0x00002000UL,150);
return;
}