串口初始化程序 - STM32F10x 示例
串口初始化程序通常包括以下步骤:
-
配置串口的波特率、数据位、停止位和校验位等参数,可以使用库函数或直接操作寄存器。
-
配置串口中断,使得当接收到数据或发送完成时可以触发中断处理程序。
-
打开串口,使得串口可以开始工作。
以下是一份示例代码:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stm32f10x.h>
#define USARTx USART1
#define USARTx_IRQn USART1_IRQn
#define USARTx_IRQHandler USART1_IRQHandler
void USART_Config(void)
{
USART_InitTypeDef USART_InitStructure;
NVIC_InitTypeDef NVIC_InitStructure;
// 使能 USART1 时钟
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1, ENABLE);
// 配置 USART1 引脚
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9; // TX
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; // RX
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_Init(GPIOA, &GPIO_InitStructure);
// 配置 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(USARTx, &USART_InitStructure);
// 配置中断
NVIC_InitStructure.NVIC_IRQChannel = USARTx_IRQn;
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 3;
NVIC_InitStructure.NVIC_IRQChannelSubPriority = 3;
NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
NVIC_Init(&NVIC_InitStructure);
USART_ITConfig(USARTx, USART_IT_RXNE, ENABLE);
// 打开串口
USART_Cmd(USARTx, ENABLE);
}
void USARTx_IRQHandler(void)
{
if (USART_GetITStatus(USARTx, USART_IT_RXNE) != RESET)
{
// 接收到数据中断处理程序
USART_ClearITPendingBit(USARTx, USART_IT_RXNE);
}
if (USART_GetITStatus(USARTx, USART_IT_TC) != RESET)
{
// 发送完成中断处理程序
USART_ClearITPendingBit(USARTx, USART_IT_TC);
}
}
int main(void)
{
USART_Config();
// ...
while (1)
{
// 主程序
}
}
原文地址: http://www.cveoy.top/t/topic/nOf3 著作权归作者所有。请勿转载和采集!