定时器初始化
void init_TMR0()
{
T0CS=0; //Fosc/4
TMR0=0;
GIE=1;
T0IE=1;
T0IF=0;
}
中断
void interrupt ISR()
{
if(T0IF)
{
PWM0=!PWM0;
T0IF=0;
}
}
主函数里面什么都没做,while(1) ;
在仿真的时候发现、从定时器中断开始到进入中断、之间竟消耗了17us:
(原文件名:进入中断.jpg)
(原文件名:进入中断时TMR0已经跑了17us.jpg)
在这17us的时间内、程序都去做什么了呢?
使用TMR1时、情况也一样
-----------------------------------------------------------------------
怎样在仿真里面看到现场保护的过程呢、现场保护也不需要15us吧?
at a minimum, you will save the W and STATUS registers (4 tcy minimum), and your C compiler likely will save more (8 - 10 instructions are normal).
plus a jump into the interrupt (1 - 2 Tcy).
so that brings you to about 14 - 16 tcy.
-----------------------------------------------------------------------
millwood0是外国友人吗
一周热门 更多>