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.

c6678自建工程不能看输出

Other Parts Discussed in Thread: TMS320C6678

你好!

在ccsv5下面自己建了个很简单的工程,编译通过了,程序也下载到板子里了,但是看输出看不了,说没找到这个变量。

我的main()函数很简单

main()

{

int a,b,c;

a=10;

b=32;

c=a+b;

}

想在变量输出窗口或者Watch窗口观察a b c的值。

在Watch窗口提示error,意思是找不到这几个变量。

请问这是怎么回事呢。

另外,想问一下,我看例程里面有后缀为.ini和.cfg的文件,这个是要自己建吗?