TI中文支持网
TI专业的中文技术问题搜集分享网站

使用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;
}

xiao liu5:

回复 Andy Yin1:

谢谢专家的回复,

确实问题与cmd有关,现在已经解决了。

赞(0)
未经允许不得转载:TI中文支持网 » 使用TMS320C6678进行代码测试时遇到的问题
分享到: 更多 (0)