大学生
最后登录1970-1-1
在线时间 小时
注册时间2016-7-24
|
void CGQ_GPIO_Config(void)
{
GPIO_InitTypeDef GPIO_InitStruct;
RCC_APB2PeriphClockCmd(CGQ_GPIO_CLK, ENABLE);
GPIO_InitStruct.GPIO_Pin=CGQ_GPIO_PIN;
GPIO_InitStruct.GPIO_Mode=GPIO_Mode_IN_FLOATING;
GPIO_Init(CGQ_GPIO_PORT, &GPIO_InitStruct);
}
uint8_t CGQSZA(void)
{
unsigned int a=0,b=0,c=0,d=0,e=0;
if(GPIO_ReadInputData(GPIOE)==0XFEFF)
{
delay_nms(50);
if(GPIO_ReadInputData(GPIOE)==0XFEFF)
a=2;
// GPIOE=0X0000;
}
}
这样写有什么问题吗?,怎么检测不到啊
|
|