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.

关于F28069 CPU定时器1 2中断

本人刚接触dsp 正在自学,希望高手们能指导下

在例程中CPU定时器1中断为什么要加EDIS  而CPU定时器2中断中要加 EALLOW跟EDIS 

interrupt void cpu_timer1_isr(void)
{
CpuTimer1.InterruptCount++;
// The CPU acknowledges the interrupt.

EDIS;
}

interrupt void cpu_timer2_isr(void)
{ EALLOW;
CpuTimer2.InterruptCount++;
// The CPU acknowledges the interrupt.
EDIS;
}

还有 我想在实现每隔一段时间通过I2C对三个器件进行一次数据采集,将I2C有关的程序放在定时器中断中,那么能不能触发I2C中断。