Hi there,
I am using a TMS320C6416 DSK, I developed an Image processing application on it, I wanted to send results back to host, so I developed a C++ com client to receive trasferred data. I used yhe rtdxint.dll , the problem is when sending data, this operation takes too much time (data is a grayscale image).
I did like this
host :
for (int i = 0 ; i < 90000 ; i++)
rtdx -> ReadI1(&image[i]);
target :
for (i = 0 ; i < 90000; i += 1000)
RTDX_write( &ochan, &image[i],1000);
I didn't understand what's happening help me please.