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.

把SYSBIOS工程从核0移植到核1 有异常

Other Parts Discussed in Thread: SYSBIOS

 大家好 问一下

我的sysbios例程在核0里面运行正常
现在想在核1里运行 尝试移植过去后 运行异常!
会是什么问题了?
核的初始化 包括PLL DDR是否必须放在核0?
我移植后的工程是这样的:
核0不用sysbios 用的是裸机程序 只执行PLL DDR的初始化
void main()
{
IER= 0;
       TSC_init();
//DSP core speed: 100*10/1=1000MHz
KeyStone_main_PLL_init(100, 10, 1);
KeyStone_DDR_init (66.66667, 16, 1, NULL);
for(;;)
{
   TSC_delay_ms(300);
}
}
核1就是原来核0的程序
移植过去的时候在RTSC Tool里修改了Platform的内存分配 L2的地址指定到了0x11800000
我的程序里不牵扯到中断 只是通过UART循环发送数据!
谢谢!