初中生
最后登录1970-1-1
在线时间 小时
注册时间2017-1-6
|
楼主 |
发表于 2017-5-7 17:21:55
|
显示全部楼层
uint8_t Key_Scan(GPIO_TypeDef *GPIOx,uint16_t GPIO_Pin)
{
#if 0
if(GPIO_ReadInputDataBit(GPIOx,GPIO_Pin)==Key_ON)
{
//松手检测
while(GPIO_ReadInputDataBit(GPIOx , GPIO_Pin)==Key_ON);
return Key_ON;
}
else
return Key_OFF;
#elif 1
if(GPIO_ReadInputDataBit(GPIOx,GPIO_Pin)==Key_ON)
{
return Key_ON;
}
else
{
return Key_OFF;
}
#endif |
|