STM32之GPIO端口输入模式配置举例

什么情况下用到输入模式?

  • 在模拟采样时;
  • 在按键输入时;

常用的输入模式有那些?

  • 模拟输入;
  • 上拉或下拉输入;


    GPIO上拉输入举例:

#include "key.h"
#include "sys.h"
void KEY_Init(void)
{
    GPIO_InitTypeDef  GPIO_InitStructure;       //结构体变量声明

  RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOE, ENABLE);//使能GPIOE时钟

  GPIO_InitStructure.GPIO_Pin = (GPIO_Pin_3|GPIO_Pin_4); //K0=PE4,K1=PE3
  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN;//输入模式
    GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;//上拉输入
  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;//50M
  GPIO_Init(GPIOE, &GPIO_InitStructure);//初始化GPIOE
}

你可能感兴趣的:(STM32)