最近用TI 的Example_2833xECanBack2Back 学习CAN通讯,程序在这里就不走了。请教一下各位大神是什么原因?
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.
最近用TI 的Example_2833xECanBack2Back 学习CAN通讯,程序在这里就不走了。请教一下各位大神是什么原因?
自己问题自己解决
void InitECanGpio(void)
{
// InitECanaGpio();
//#if (DSP28_ECANB)
InitECanbGpio();
//#endif // if DSP28_ECANB
}
官网程序有错!原是配置
void InitECanGpio(void)
{
InitECanaGpio();
//#if (DSP28_ECANB)
// InitECanbGpio();
//#endif // if DSP28_ECANB
}
搞掂,OK!