独立按键控制LED状态

#include <REGX52.H>
#include <INTRINS.H>

void Delay1ms(unsigned int xms)        
{
    unsigned char i, j;
    while(xms)
    {
        _nop_();
        i = 2;
        j = 199;
        do
        {
            while (--j);
        } while (--i);
        xms--;
    }
    
}

void main()
{
    while(1)
        {
            if(P3_1==0)
            {
                Delay1ms(20);
                while(P3_1==0)
                {
                
                }
                Delay1ms(20);
                P2_0=~P2_0;
            }
        }

}

上一篇:STM32CubeMx+HAL笔记(六)用GPIO控制LED灯的开发步骤


下一篇:原子锁实验