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.

CLA 指针使用问题

Other Parts Discussed in Thread: C2000WARE

请问在CLA 里可以实现如下代码吗

void (* Cla1_Task1_Callback)(void);

__interrupt void Cla1Task1 ( void )
{
       Cla1_Task1_Callback();

}

想在cla的task里运行一个回调函数 Cla1_Task1_Callback();  这个回调函数,会在其他的.cla里注册,请问这个可以吗?