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.

关于AM5728的arm和dsp并列运行的问题

Other Parts Discussed in Thread: SYSBIOS

刚接触5728这款开发板,我们需要5728在跑arm的时候能启动dsp运行dsp下的程序,本来我想用opencl,ipc什么的,然后老师说那样弄的话相当于把dsp当一个类似显卡一样的东西用了,而且ccs里的dsp程序都得改,开发起来比较麻烦,然后他说不用opencl,ipc,想要arm和dsp两者独立运行,arm下跑linux的程序,dsp就直接跑ccs下建立的out程序,他想这样实现:
先把arm跑起来,然后把out文件搬到dsp的空间里,然后再启动dsp,两个都跑起来后两者之间靠共享内存实现数据传输

听完之后我有点懵,请问一下我该如何实现呢