hi,I'd like to send a source image from gpp to dsp and then get the result image from dsp. I just plan to use the dsplink to transmit the image data.
the image size is big and i hope the transmission time as less as possible. now my device is dm6446.
I konw that there are three ways to do that.
1.using a msgq and attaching my data with a msg.The maxsize of a msg is 64k, so i have to do that repeatedly.
2.using a channel, but i find that the transmission speed is several MB/s.
3.directly writing or reading the DSP memory by Proc_write() or Proc_read().
My image data is about 50M and my dsp algorithm will not work until the whole data is ready.
So could you tell me that which is the fastest way to transmit the image data, or some other ways? and the maxsize transmission speed?