#include
#include
#define GPIO_LED P2
//外部中斷的IO
sbit K3=P3^2;
sbit K4=P3^3;
void IntConfiguration();
void Delay(unsigned int n);
unsigned char KeyValue=0;
void main(void)
{
GPIO_LED=0Xfe;
IntConfiguration();
while(1)
{
if(KeyValue)
GPIO_LED=_crol_(GPIO_LED,1);
else
GPIO_LED=_cror_(GPIO_LED,1);
Delay(2000);
}
}
void IntConfiguration()
{
//設(shè)置INT0
IT0=1;//跳變沿出發(fā)方式(下降沿)
EX0=1;//打開INT0的中斷允許。
//設(shè)置INT1
IT1=1;
EX1=1;
EA=1;//打開總中斷
}
void Delay(unsigned int n) //延時(shí)50us誤差 0us
{
unsigned char a,b;
for(;n>0;n--)
{
for(b=1;b>0;b--)
for(a=22;a>0;a--);
}
}
void Int0() interrupt 0 //外部中斷0的中斷函數(shù)
{
Delay(1); //延時(shí)消抖
if(K3==0)
KeyValue=1;
}
void Int1() interrupt 2 //外部中斷1的中斷函數(shù)
{
Delay(1); //延時(shí)消抖
if(K4==0)
KeyValue=0;
}