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

DSP clock问题

C6678l,Windows XP,程序代码如下:

#include <stdio.h>

#include <time.h>

void main()

{

int i=0;

clock_t start,stop,overhead;

start=clock();

stop=clock();

overhead=stop-start;

start=clock();

for(i=0;i<1000000000;i++)

{}

stop=clock();

printf("time:%d\n",stop-start-overhead);

}

最后输出的结果是 time:0

请问为什么结果会是0,求教专家怎么能测试一个函数运行的时间?

si cheng:

回复 Andy Yin:

你查看你的CCS5的clock使能没有,run->clock->enable,试试!

赞(0)
未经允许不得转载:TI中文支持网 » DSP clock问题
分享到: 更多 (0)