编写一个基于stm32f103的代码实现当按键按键key按下时,通过串口打印出来是哪个按键按下,分为主函数.c和.h文件
时间: 2024-02-17 22:00:37 浏览: 56
好的,以下是基于stm32f103的代码实现当按键按键key按下时,通过串口打印出来是哪个按键按下的例程,分为主函数.c和.h文件:
button.h文件:
```c
#ifndef __BUTTON_H
#define __BUTTON_H
#ifdef __cplusplus
extern "C" {
#endif
#include "stm32f10x.h"
#include <stdbool.h>
void Button_Init(void);
bool Button_IsPressed(void);
void Button_WaitForRelease(void);
#ifdef __cplusplus
}
#endif
#endif /* __BUTTON_H */
```
button.c文件:
```c
#include "button.h"
void Button_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
}
bool Button_IsPressed(void)
{
return GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_0) == Bit_RESET;
}
void Button_WaitForRelease(void)
{
while (Button_IsPressed());
}
```
main.c文件:
```c
#include "stm32f10x.h"
#include "stdio.h"
#include "button.h"
int main(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
USART_InitTypeDef USART_InitStructure;
// 使能GPIO和USART时钟
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_USART1, ENABLE);
// 配置USART1的Tx引脚PA9
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
// 配置USART1的Rx引脚PA10
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
// 配置按键引脚PA0
Button_Init();
// 配置USART1的参数
USART_InitStructure.USART_BaudRate = 115200;
USART_InitStructure.USART_WordLength = USART_WordLength_8b;
USART_InitStructure.USART_StopBits = USART_StopBits_1;
USART_InitStructure.USART_Parity = USART_Parity_No;
USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;
USART_Init(USART1, &USART_InitStructure);
// 使能USART1
USART_Cmd(USART1, ENABLE);
while (1)
{
// 如果按键按下
if (Button_IsPressed())
{
// 串口打印按键按下
printf("Button %d pressed!\n", 0);
// 等待按键释放
Button_WaitForRelease();
}
}
}
```
需要注意的是,因为使用了button.h头文件,需要在工程中添加button.c和button.h文件。同时,在main.c文件中需要包含button.h头文件。
阅读全文