Part Number: TMS320C6678 core0通过写boot_magic_address地址值,以及发送IPC中断启动core1-7,是正常的,但是多核间通信也是发送IPC中断,所有核启动运行后,当core0向其他核发IPC中断用于通信时,就会再次重启其他核,不会进入其他核的中断服务程序,为什么啊?
请大神帮忙解决,谢谢!!!
Part Number: TMS320C6678 Other Parts Discussed in Thread: SYSBIOS 公司设计的6678核心板,将堆物理存储设置为DDR3,网络初始化不成功,配置如下
var HeapMem = xdc.useModule('ti.sysbios.heaps.HeapMem'); var heapMemParams = new HeapMem.Params(); heapMemParams.size = 0x8000000; heapMemParams…
Part Number: TMS320C6678
你好TI官方:
我最近在调试6678的中断案例的时候编译工程出现下面的错误,我更改了相应的工程设置也不能解决下面问题,能帮我看一下吗,谢谢。
**** Build of configuration Debug for project IPC_example_on_6678 ****
"D:\\ti\\ccsv5\\utils\\bin\\gmake" -k all 'Building target: IPC_example_on_6678…
Part Number: TMS320C6678 /* Poll on IPR bit 0 */
do {
CSL_edma3GetHwStatus(hModule,CSL_EDMA3_QUERY_INTRPEND,®ionIntr);
} while (!(regionIntr.intr & 0x1));
EDMA传输采用这种轮询的方式查传输是否完成,会影响运算性能么(轮询的同时,单核可以进行其他的运算工作么)