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.
1、为什么我在实验时候,F28035 用ADCINT1触发CLA任务,配置了ADC和PWM,最后配置CLA,任务运行不了自动进入 下面这个默认中断
__interrupt void rsvd_ISR(void) // For test
{
__asm (" ESTOP0");
for(;;);
}
2、不用ADC触发,软件触发CLA,都能正常运行;但是在配置最后,屏蔽了CLA的任务完成中断,也会运行不了CLA任务,如下。
// PieCtrlRegs.PIEIER11.all = 0xFFFF;
// IER = (M_INT11 );
3、将 IER = (M_INT11 ); 改为IER |= (M_INT11); 也会运行不了CLA任务。