HI,TIer.
Right now we wanna develop our own algorithm in DSP,and in the alg,there are lots of memcpy.
I have do a test in which memcpy is placed in for loop,the when I read the .asm file,I found that only two parallel.
for (c = 0; c < 10; c++)
{
memcpy(fff, ttt, 2);
}
So,I think memcpy in CCS is not effiency software pipleined.And,do I need to write a more fast memcpy_dsp function in CCS to make algorithm fun faster?
BR!