This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

communication between dsp and gpp using message queue.

I have to make a program in davinci dm6446 .I install dvsdk.NOW I have to

Modify existing Message Queue sample to handle one more messages given in codec engine example. 

 new Message Queue: Along with the existing message ARM should pass a valid integer (message) to DSP.ARM should print the same integer on screen (Serial Interface).

Say for e.g. 4. DSP should receive it and add one (1) to it. Now the result would be 5.DSP in turn should send this new value to ARM. ARM should print that new value on screen. ARM should repeat this 5 times. Output on screen should be as follows:

Data from ARM is 5

Data from DSP is 6

Data from ARM is 6

Data from DSP is 7

Data from ARM is 7

Data from DSP is 8

like that..........

plz give some suggestions how to do that.