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.

使用TMS320C6678进行代码测试时遇到的问题



专家您好,

我在进行代码测试时遇到的问题:

Debuger之后遇到这个问题:

C66xx_0: Trouble Writing Memory Block at 0x8000 on Page 0 of Length 0x6180: (Error -1190 @ 0x8000) Unable to access device memory. Verify that the memory address is in valid memory. If error persists, confirm configuration, power-cycle board, and/or try more reliable JTAG settings (e.g. lower TCLK). (Emulation package 5.0.747.0)

C66xx_0: GEL: File: D:\ccsvworkplace\First_C6678\Debug\First_C6678.out: Load failed.

谢谢专家,希望得到专家尽快回复

下面附上我测试的代码:

#include <stdio.h> // standard I/O needed for printf
#include <c6x.h>

void Delay()
{
unsigned int i,p;
i=5000;
p=5000;
while(i--) p++;

}

void main(void) {

unsigned int i;
int m = 0;
for(i=0;i<10;i++)
printf("m=%d\n", m++);
Delay();
while(1) ;
return;
}