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.
在定时器timer0的中断服务子程序中,不加这条语句PieCtrlRegs.PIEACK.all = PIEACK_GROUP1,竟还可以继续正常的按照定时的时间进入这个中断,定时器timer0属于PIE中第一组的向量,按照道理,在timer0的中断服务子程序中如果不写PieCtrlRegs.PIEACK.all = PIEACK_GROUP1,那么之后这一组的中断,后面都是无法再响应的,但问题是,我去掉这句话,这个中断在以后的时间里还是能一直的运行下去,每次到了时间就能进入中断,并执行服务子程序,求解释。