STM32应用简章之GPIO初始化(输入引脚)

l//初始化IO模式:上拉/下拉输入。调用函数: 

void KEY_Init(void) //IO初始化
{ 
     GPIO_InitTypeDef GPIO_InitStructure;
 
     RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA|RCC_APB2Periph_GPIOE,ENABLE);//使能PORTA,PORTE时钟

     GPIO_InitStructure.GPIO_Pin  = GPIO_Pin_2|GPIO_Pin_3|GPIO_Pin_4;//KEY0-KEY2
     GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU; //设置成上拉输入
     GPIO_Init(GPIOE, &GPIO_InitStructure);//初始化GPIOE2,3,4

}

// 扫描IO口电平(库函数/寄存器/位操作)。

 uint8_t GPIO_ReadInputDataBit(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);

#define KEY0  GPIO_ReadInputDataBit(GPIOE,GPIO_Pin_4)//读取按键0

 

你可能感兴趣的:(STM32)