Hi everybody,
I'm programming on DM6437 now. I'm facing three problems when I read the datasheet
TMS320 C6000 IDK Programmer's Guide ( Literature Number SPRU495A). As we all know,
that datasheet is used for 6711 device. Firstly,my question is whether I can use IDM
on 6437.If possible,how to use IDM on 6437device,how can I call the APIs to use IDM on 6437?
Secondly, how can I know the exact running time executed by the following code:
// to process 720*480 video data
for(mj = 0 ; mj < 480 ; mj++)
{
for ( mi=0; mi< 720; mi++ )
{
*dst++ = src[j++];
...
}
}
Lastly,what should I do in my program to confirm the time between two continuous VD
while processing a whole frame.
I really confused about them.Please help me.Thank you!
Zhou