矩阵键盘为啥引脚不能被拉低,求助

2019-10-14 20:29发布

引脚不能被拉低
用的战舰v3F1
GPIO_InitTypeDef GPIO_InitStructure;

    RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOF, ENABLE);
    GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1 | GPIO_Pin_3  | GPIO_Pin_5 | GPIO_Pin_7 ;

    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
    GPIO_Init(GPIOF ,&GPIO_InitStructure);
    //设置PE8~11为输入模式
    GPIO_InitStructure.GPIO_Pin = GPIO_Pin_4 | GPIO_Pin_5  | GPIO_Pin_6 | GPIO_Pin_7 ;

    GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
                GPIO_InitStructure.GPIO_Mode =  GPIO_Mode_Out_PP;
                GPIO_Init(GPIOA,&GPIO_InitStructure);
  //设置PE12~15为输出模式
         while(1)
        {                  GPIO_SetBits(GPIOA,GPIO_Pin_4 );
as=GPIO_ReadInputDataBit(GPIOA,GPIO_Pin_4);}


我直接把PA4接地了 测试一下 可as还等于1.。。。这是为啥
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。