UART串口通信控制数码管显示1时亮灯0时灭灯的代码
时间: 2024-01-01 08:05:53 浏览: 79
以下是基于STM32的UART串口通信控制数码管显示1时亮灯0时灭灯的代码示例:
```c
#include "stm32f10x.h"
void UART_Init(void);
void GPIO_Init(void);
int main(void)
{
UART_Init(); // 初始化UART串口
GPIO_Init(); // 初始化GPIO口
while (1) {
while (USART_GetFlagStatus(USART1, USART_FLAG_RXNE) == RESET); // 等待接收到数据
uint16_t data = USART_ReceiveData(USART1); // 读取接收到的数据
if (data == '1') {
GPIO_SetBits(GPIOA, GPIO_Pin_0); // 点亮LED
GPIO_Write(GPIOB, GPIO_Pin_All); // 数码管显示1
} else if (data == '0') {
GPIO_ResetBits(GPIOA, GPIO_Pin_0); // 熄灭LED
GPIO_Write(GPIOB, 0x00); // 数码管不显示
}
}
}
void UART_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
USART_InitTypeDef USART_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_USART1, ENABLE);
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);
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);
USART_InitStructure.USART_BaudRate = 9600;
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);
USART_Cmd(USART1, ENABLE);
}
void GPIO_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_GPIOB, ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1 | GPIO_Pin_2 | GPIO_Pin_3 | GPIO_Pin_4 | GPIO_Pin_5 | GPIO_Pin_6 | GPIO_Pin_7;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOB, &GPIO_InitStructure);
}
```
注:此代码仅供参考,实际应用中需要根据具体的硬件平台和需求进行修改。
阅读全文