#includereg52.h#includeintrins.h#defineucharunsignedchar#defineuintunsignedintsbitLED=P2^5;uchartop=0;//一个周期里面高电平占的比重(一个周期分成200份,top从0~200)ucharflag=0;//增减标志位,0标志渐亮,1表示渐暗ucharcount=0;//定时器计数,100us记一次voidInit_T0()//以计数器T0工作方式2为例{TMOD&=0xf0;//设置工作方式TMOD|=0x02;TH0=(256-100)%256;//装入初值TL0=(256-100)%256;EA=1;//打开中断总开关ET0=1;//打开TO中断开关TR0=1;//启动T0开始工作}voiddelay(uintx){uinti;for(;x0;x--){for(i=120;i0;i--){_nop_();_nop_();_nop_();_nop_();}}}voidTimer0()interrupt1{ET0=0;//关中断switch(LED==1){case0:if(count==(200-top)){count=0;LED=1;if(flag==0)//增减标志位,0表示加,1表示减{top++;if(top==200){flag=1;LED=1;//LED灯满周期高电平delay(200);//延长LED灯暗时的时间}}else{top--;if(top==0){flag=0;LED=0;//LED灯满周期低电平}}};break;case1:if(count==top){count=0;LED=0;if(flag==0)//增减标志位,0表示加,1表示减{top++;if(top==200){flag=1;LED=1;//LED灯满周期低电平delay(200);//延长LED灯暗时的时间}}else{top--;if(top==0){flag=0;LED=0;//LED灯满周期低电平}}};break;default:LED=1;}count++;//计数值自加count=count%201;//使取值0~100ET0=1;//中断打开}voidmain(){LED=1;Init_T0();while(1);}