本帖最后由 xiakemoon 于 2016-6-23 17:32 编辑
我把按键程序里的GPIO_InitTypeDef GPIO_InitStructure改为GPIO_InitTypeDef* GPIO_InitStructure,代码如下:
GPIO_InitTypeDef* GPIO_InitStructure;
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA|RCC_AHB1Periph_GPIOE, ENABLE);
GPIO_InitStructure->GPIO_Pin = GPIO_Pin_2|GPIO_Pin_3|GPIO_Pin_4;
GPIO_InitStructure->GPIO_Mode = GPIO_Mode_IN;
GPIO_InitStructure->GPIO_Speed = GPIO_Speed_100MHz;
GPIO_InitStructure->GPIO_PuPd = GPIO_PuPd_UP;
GPIO_Init(GPIOE, GPIO_InitStructure);
编译通过了,可是无法正常工作,KEY连接的端口一开始都是0,请问大家这是哪里出错了
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
一周热门 更多>