void timerB_init()
{
//B定时器,用于
TBCCTL0 = CCIE; // CCR0 interrupt enabled, Capture/compare interrupt enable
TBCCR0 = 2048;//1s
TBCTL = TBSSEL_1 + ID_3+MC_1 + TBCLR; // ACLK,32768HZ,8分频contmode, clear TAR
TBCTL&=~TBIE;
}
为什么 我TBCTL&=~TBIE;这样关了定时器B的中断,却还能进入到定时器B的中断程序中? |