PB2口置零可以用#define TXEN_1 (PORTB|=BIT(2))
检测高低电平如下:
if( (PORTB&0x04) ==0 )
{
//PB2这个端口为低电平
}
if( (PORTB&0x04) !=0 )
{
//PB2这个端口为高电平
}
PB2口置零可以用#define TXEN_1 (PORTB|=BIT(2))
检测高低电平如下:
if( (PORTB&0x04) ==0 )
{
//PB2这个端口为低电平
}
if( (PORTB&0x04) !=0 )
{
//PB2这个端口为高电平
}