bsp_key.h
#ifndef __KEY_H
#define __KEY_H
#include "stm32f4xx.h"
//引脚定义
/*******************************************************/
#define KEY1_PIN GPIO_Pin_0 //GPIO引脚号
#define KEY1_GPIO_PORT GPIOA //GPIO端口A
#define KEY1_GPIO_CLK RCC_AHB1Periph_GPIOA //GPIO端口时钟
#define KEY2_PIN GPIO_Pin_13
#define KEY2_GPIO_PORT GPIOC
#define KEY2_GPIO_CLK RCC_AHB1Periph_GPIOC
/*******************************************************/
/** 按键标置宏,
* 按键按下高电平,KEY_ON=1,KEY_OFF=0,
* 按键按下低电平,KEY_ON=0,KEY_OFF=1
*/
#define KEY_ON 1
#define KEY_OFF 0
void Key_GPIO_Config(void); //定义KEY-GPIO初始化配置函数
uint8_t Key_Scan(GPIO_TypeDef* GPIOx,u16 GPIO_Pin); //按键按下检测
#endif /* __LED_H */
bsp_key.c
#include "./key/bsp_key.h"
/**
* 配置按键用到的IO口
*/
void Key_GPIO_Config(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
/*开启按键GPIO口时钟*/
RCC_AHB1PeriphClockCmd(KEY1_GPIO_CLK|KEY2_GPIO_CLK,ENABLE);
/*选择按键GPIO引脚*/
GPIO_InitStructure.GPIO_Pin = KEY1_PIN;
/*设置GPIO引脚为输入模式*/
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN;
/*设置引脚不上拉也不下拉*/
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
/*使用上面配置的结构体GPIO_InitStructure初始化按键*/
GPIO_Init(KEY1_GPIO_PORT, &GPIO_InitStructure);
/*选择按键GPIO引脚*/
GPIO_InitStructure.GPIO_Pin = KEY2_PIN;
/*使用上面配置的结构体GPIO_InitStructure初始化按键*/
GPIO_Init(KEY2_GPIO_PORT, &GPIO_InitStructure);
}
/**
* @brief 检测是否有按键按下
* @param GPIOx:具体的端口(x=A,B...K)
* @param GPIO_PIN:具体的端口位(x=0...15)
* @retval 按键状态
* @arg KEY_ON:按键按下
* @arg KEY_OFF:按键没按下
*/
uint8_t Key_Scan(GPIO_TypeDef* GPIOx,uint16_t GPIO_Pin) //按下返回KEY_ON,没按返回KEY_OFF
{
/*检测是否有按键按下*/
if(GPIO_ReadInputDataBit(GPIOx,GPIO_Pin) == KEY_ON )
{
/*等待按键释放*/
while(GPIO_ReadInputDataBit(GPIOx,GPIO_Pin) == KEY_ON);
return KEY_ON;
}
else
return KEY_OFF;
}
/*********************************************END OF FILE**********************/
上一篇:assert_param函数的意义
下一篇:stm32的KEY控制LED
推荐阅读最新更新时间:2024-03-16 16:26