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.

tms320f28069 time0中断问题

Other Parts Discussed in Thread: CONTROLSUITE

在controlSUITE的 28069的例子里  

F2806x_DefaultIsr.c 这个是所有的 中断服务函数的 集合,

InitPieVectTable(); 初始化里  给 PieVectTable都赋值了,

现在以time0 为例, 我的问题是  为什么我的 程序不会跳转到 TINT0_ISR()  这样函数,  一定要自己写一个 服务函数fun(),  然后PieVectTable.TINT0 = &fun();

才会跳转到fun()里,  这不是很奇怪吗?   你们controlSUITE 的例子里也是像fun()  一样 自己又写了一个函数做服务程序的,   为什么不能用F2806x_DefaultIsr.c  的如何函数呢?