MSP430的按键中断程序中有这样写到:
#pragma vector = PORT1_VECTOR
__interrupt void PORT1_ISR(void)
{
unsigned int i;
unsigned char temp;
temp = P1IFG;
for(i=0;i<0x1fff;i++);
if((P1IN&temp)==(!temp))
{
switch(temp)
{
case 1: P2OUT ^= BIT1;break;
case 2: P2OUT ^= BIT2;break;
case 4: P2OUT ^= BIT3;break;
case 8: P2OUT ^= BIT4;break;
}
}
P1IFG = 0;
}
其中这句if((P1IN&temp)==(!temp))感觉解释不通,当有按键中断时(比如是BIT1),则P1IN=0XFD,temp=0X02,PIN&temp=0X00;不可能等于(!temp)=0xfd; 求高手指点.....
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
兄弟,你知道!和〜的区别吗?孔乙己估计知道
一周热门 更多>