52單片機定時器2實現(xiàn)1s中斷
include// 要寫 ,不能寫 //--------默認(rèn)為16位自動重載方式------------//void main(){/* T2定時器溢出預(yù)載值,溢出16次就是1s65536-62500=3036,即0x0bdc */RCAP2H=0x0B;RCAP2L=0xDC; ET2=1; // 允許T2中斷EA=1; // 開總中斷TR2=1; // 啟動T2while(1); //等待溢出中斷}void t2 ( ) interrupt 5{static unsigned char count; TF2=0; // 溢出標(biāo)志必須軟件清0count++;if(count==16) {count=0;P1=~P1; }}
評論