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.

如何配置6678的EMIF16



dspType= Get_dsp_type();
if(TCI6608==dspType)
{
//DSP core speed
//KeyStone_main_PLL_init (20, 1); //for 50MHz input clock
KeyStone_main_PLL_init (10, 1); //for 100MHz input clock
}
else if(TCI6614==dspType||TCI6616==dspType||TCI6618==dspType)
{
//DSP core speed
KeyStone_main_PLL_init (236, 29); //for 122.88MHz input clock
}
else
{
puts("Unknown DSP type!");
return;
}

这是ti提供代码中一部分,dsp型号没有6678,那这个程序能用在6678上吗,还是需要修改,如何修改