定时器0,中断,控制LED闪烁(1s亮,1s灭)---2018-11-07

#include                 
#include     

#define uchar unsigned char 
#define uint unsigned int 

sbit LED = P2^2;

void timer_init()
{
    TMOD |= 0x01;  
    TH0 = 0x4C;
    TL0 = 0x00;

    EA = 1;  
    ET0 = 1; 
        
    TR0 = 1;
}

void trigger_timer0() interrupt 1
{
    static uint i = 0;
    TH0 = 0x4C;
    TL0 = 0x00;
    i++;
    if( i == 20 ) 
        { 
        i = 0;
        LED = ~LED;
    }
}

void main()
{
    timer_init();
    while( 1 );
}

你可能感兴趣的:(c/c++,嵌入式物联网)