急求啊,研究了半天了各位大神!!stm32f103 4*4按键问题,求解答啊!!

2019-08-20 18:39发布

为什么按键不能响应,硬件连接没有问题啊,研究了好久了,,帮帮忙,各位大哥们,
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
11条回答
szczyb1314
2019-08-21 20:17
jreeys 发表于 2017-4-21 07:43
GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_OD;//开漏输出
GPIO_InitStruct.Pull = GPIO_PULLUP;//上拉

我是103系列的32单片机。这个GPIO_InitTypeDef类型的结构体就没有Pull这个成员。你这个不是103的吧?
typedef struct
{
  uint16_t GPIO_Pin;             /*!< Specifies the GPIO pins to be configured.
                                      This parameter can be any value of @ref GPIO_pins_define */

  GPIOSpeed_TypeDef GPIO_Speed;  /*!< Specifies the speed for the selected pins.
                                      This parameter can be a value of @ref GPIOSpeed_TypeDef */

  GPIOMode_TypeDef GPIO_Mode;    /*!< Specifies the operating mode for the selected pins.
                                      This parameter can be a value of @ref GPIOMode_TypeDef */
}GPIO_InitTypeDef;

一周热门 更多>