STM32f103 串口应用代码

前言

这是本人在学习 stm32 过程中总结的代码,希望能对新手有所帮助,若有谬误之处,恳请各位指正。

基本说明

此代码为基于 stm32f1 固件库和 stdio.h 的对串口的封装。方便对各个串口的初始化和使用。

使用说明

1、串口配置函数
void USART_Config(u8 UsartN,int baudrate,u8 Ppro,u8 Spro);
UsartN 为串口选择,为 1 ~ 5
baudrate 为波特率,常用 9600,115200 等
Ppro 为串口中断主优先级
Spro 为串口中断子优先级
使用例:
USART_Config(1,115200,1,1);

2、串口发送一个字节:
void Usart_SendByte( USART_TypeDef * pUSARTx, uint8_t ch);
使用例:
Usart_SendByte(USART1,a);//a一般是8位整数,若不是将自动强制转换或报错
Usart_SendByte(USART3,-16);//可以发送负数,会当成正数发送
Usart_SendByte(UART4,25);//注意串口4和5是UART而不是USART

3、串口发送8位的数组:
void Usart_SendArray( USART_TypeDef * pUSARTx, uint8_t *array, uint16_t num);
使用例:
Usart_SendArray(USART1,b,10);//b是数组,10是数组长度

4、串口发送字符串:
void Usart_SendString( USART_TypeDef * pUSARTx, char *str);
使用例:
Usart_SendString(USART1,c);//c是字符串,此函数自动判断是否到达字符串默认终止符,故无需输入长度

5、串口发送一个16位数:
void Usart_SendHalfWord( USART_TypeDef * pUSARTx, uint16_t ch);
此函数将16位整数分两次发送,先高8位后低8位

5、printf 和 scanf
#define printf_USARTx USART1 //重定向printf的串口
#define scanf_USARTx USART1 //重定向scanf等的串口
将这两个函数指向需要的串口,就能直接使用 printf 向该串口发送数据或用 scanf 从该串口读取数据

注意

小容量的产品仅有串口 1、2,中等容量的多了串口 3,大容量的多了 4、5,注意不要配置和使用当前芯片所没有的串口

已将串口 1 ~ 5 的中断服务程序写于 USARTcontrol.c 中,暂时为注释状态
在某串口可能发生中断时必须启用相应的中断服务程序,否则会发生死循环

另外,要注意 Usart_SendByte 和 USART_SendData 的区别,后者为固件库函数,发送数据后不会等待发送数据寄存器为空,而前者会等待发送数据寄存器为空,保证发送完毕

代码

h文件:

#ifndef _USARTCONTROL_H
#define _USARTCONTROL_H

#include "stm32f10x.h"
#include <stdio.h>

#define printf_USARTx		USART1	//重定向printf的串口
#define scanf_USARTx		USART1	//重定向scanf等的串口

void USART_Config(u8 UsartN,int baudrate,u8 Ppro,u8 Spro);//串口外设和GPIO初始化及相关参数设定
void Usart_SendByte( USART_TypeDef * pUSARTx, uint8_t ch);//串口发送一个字节
void Usart_SendArray( USART_TypeDef * pUSARTx, uint8_t *array, uint16_t num);//串口发送8位的数组
void Usart_SendString( USART_TypeDef * pUSARTx, char *str);//串口发送字符串
void Usart_SendHalfWord( USART_TypeDef * pUSARTx, uint16_t ch);//串口发送一个16位数

#endif

c文件:

#include "USARTcontrol.h"
//*****************************************************************************************//
static void NVIC_Configuration(u8 UsartN,u8 Ppro,u8 Spro)//配置嵌套向量中断控制器NVIC
{
  NVIC_InitTypeDef NVIC_InitStructure;//中断结构体
  NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);//嵌套向量中断控制器组选择
	if(UsartN<=3){	NVIC_InitStructure.NVIC_IRQChannel = 36+UsartN;	}//配置USART为中断源
	else{	NVIC_InitStructure.NVIC_IRQChannel = 48+UsartN;	}
	NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = Ppro;//主优先级
	NVIC_InitStructure.NVIC_IRQChannelSubPriority = Spro;//子优先级
  NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;//使能中断
  NVIC_Init(&NVIC_InitStructure);//初始化配置NVIC
}
//*****************************************************************************************//
void USART_Config(u8 UsartN,int baudrate,u8 Ppro,u8 Spro)//串口外设和GPIO初始化及相关参数设定
{
	uint32_t UsartN_BASE=0;
	GPIO_InitTypeDef GPIO_InitStructure;//GPIO初始化结构体
	USART_InitTypeDef USART_InitStructure;//串口初始化结构体
	//配置串口的工作参数:
	USART_InitStructure.USART_BaudRate = baudrate;//配置波特率
	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;//配置工作模式:收发一起
	if(UsartN==1){
		UsartN_BASE=USART1_BASE;
		RCC_APB2PeriphClockCmd((RCC_APB2Periph_GPIOA), ENABLE);//打开串口GPIO的时钟
		RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1, ENABLE);//打开串口外设的时钟
		//将Tx的GPIO配置为推挽复用模式:
		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);
		//将Rx的GPIO配置为浮空输入模式:
		GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
		GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
		GPIO_Init(GPIOA, &GPIO_InitStructure);
	}
	if(UsartN==2){
		UsartN_BASE=USART2_BASE;
		RCC_APB2PeriphClockCmd((RCC_APB2Periph_GPIOA), ENABLE);//打开串口GPIO的时钟
		RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2, ENABLE);//打开串口外设的时钟
		//将Tx的GPIO配置为推挽复用模式:
		GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2;
		GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
		GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
		GPIO_Init(GPIOA, &GPIO_InitStructure);
		//将Rx的GPIO配置为浮空输入模式:
		GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3;
		GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
		GPIO_Init(GPIOA, &GPIO_InitStructure);
	}
	if(UsartN==3){					//需中容量
		UsartN_BASE=USART3_BASE;
		RCC_APB2PeriphClockCmd((RCC_APB2Periph_GPIOB), ENABLE);//打开串口GPIO的时钟
		RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART3, ENABLE);//打开串口外设的时钟
		//将Tx的GPIO配置为推挽复用模式:
		GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
		GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
		GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
		GPIO_Init(GPIOB, &GPIO_InitStructure);
		//将Rx的GPIO配置为浮空输入模式:
		GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11;
		GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
		GPIO_Init(GPIOB, &GPIO_InitStructure);
	}
	if(UsartN==4){					//需大容量
		UsartN_BASE=UART4_BASE;
		RCC_APB2PeriphClockCmd((RCC_APB2Periph_GPIOC), ENABLE);//打开串口GPIO的时钟
		RCC_APB1PeriphClockCmd(RCC_APB1Periph_UART4, ENABLE);//打开串口外设的时钟
		//将Tx的GPIO配置为推挽复用模式:
		GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
		GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
		GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
		GPIO_Init(GPIOC, &GPIO_InitStructure);
		//将Rx的GPIO配置为浮空输入模式:
		GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11;
		GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
		GPIO_Init(GPIOC, &GPIO_InitStructure);
	}
	if(UsartN==5){					//需大容量
		UsartN_BASE=UART5_BASE;
		RCC_APB2PeriphClockCmd((RCC_APB2Periph_GPIOC|RCC_APB2Periph_GPIOD), ENABLE);// 打开串口GPIO的时钟
		RCC_APB1PeriphClockCmd(RCC_APB1Periph_UART5, ENABLE);//打开串口外设的时钟
		//将Tx的GPIO配置为推挽复用模式:
		GPIO_InitStructure.GPIO_Pin = GPIO_Pin_12;
		GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
		GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
		GPIO_Init(GPIOC, &GPIO_InitStructure);
		//将Rx的GPIO配置为浮空输入模式:
		GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2;
		GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
		GPIO_Init(GPIOD, &GPIO_InitStructure);
	}
	USART_Init(((USART_TypeDef *)UsartN_BASE), &USART_InitStructure);//完成串口的初始化配置
	NVIC_Configuration(UsartN,Ppro,Spro);//串口中断优先级配置
	USART_ITConfig(((USART_TypeDef *)UsartN_BASE), USART_IT_RXNE, ENABLE);//使能串口接收中断
	USART_Cmd(((USART_TypeDef *)UsartN_BASE), ENABLE);//使能串口	
}
//*****************************************************************************************//
void Usart_SendByte( USART_TypeDef * pUSARTx, uint8_t ch)//串口发送一个字节
{
	USART_SendData(pUSARTx,ch);//发送一个字节数据到指定串口
	while(USART_GetFlagStatus(pUSARTx,USART_FLAG_TC)==RESET);//等待发完
}
//*****************************************************************************************//
void Usart_SendArray( USART_TypeDef * pUSARTx, uint8_t *array, uint16_t num)//串口发送8位的数组
{
  uint8_t i;
	for(i=0; i<num; i++){	Usart_SendByte(pUSARTx,array[i]);	}//连续发送一个字节数据到指定串口
	while(USART_GetFlagStatus(pUSARTx,USART_FLAG_TC)==RESET);//等待发完
}
//*****************************************************************************************//
void Usart_SendString( USART_TypeDef * pUSARTx, char *str)//串口发送字符串
{
	unsigned int k=0;
  do{
    Usart_SendByte( pUSARTx, *(str + k) );
		k++;
  }while(*(str + k)!='\0');
  while(USART_GetFlagStatus(pUSARTx,USART_FLAG_TC)==RESET);//等待发完
}
//*****************************************************************************************//
void Usart_SendHalfWord( USART_TypeDef * pUSARTx, uint16_t ch)//串口发送一个16位数
{
	uint8_t temp_h, temp_l;
	temp_h = (ch&0XFF00)>>8;//取高八位
	temp_l = ch&0XFF;//取低八位
	USART_SendData(pUSARTx,temp_h);//发高八位
	while(USART_GetFlagStatus(pUSARTx,USART_FLAG_TC)==RESET);//等待发完
	USART_SendData(pUSARTx,temp_l);//发低八位
	while(USART_GetFlagStatus(pUSARTx,USART_FLAG_TC)==RESET);//等待发完
}
//*****************************************************************************************//
int fputc(int ch, FILE *f)//重定向c库函数printf到串口,重定向后可使用printf函数
{
	USART_SendData(printf_USARTx, (uint8_t) ch);//发送一个字节到串口
	while(USART_GetFlagStatus(printf_USARTx, USART_FLAG_TXE) == RESET);//等待发完
	return ch;
}
//*****************************************************************************************//
int fgetc(FILE *f)//重定向c库函数scanf到串口,重定向后可使用scanf、getchar等函数
{
	while(USART_GetFlagStatus(scanf_USARTx, USART_FLAG_RXNE) == RESET);//等串口输入数据
	return (int)USART_ReceiveData(scanf_USARTx);
}
//*****************************************************************************************//
/*void USART1_IRQHandler(void)//串口1接收中断
{
  uint8_t receive;
	if(USART_GetITStatus(USART1,USART_IT_RXNE)!=RESET)
	{
		receive = USART_ReceiveData(USART1);//接收数据
		
	}
}*/
//*****************************************************************************************//
/*void USART2_IRQHandler(void)//串口2接收中断
{
  uint8_t receive;
	if(USART_GetITStatus(USART2,USART_IT_RXNE)!=RESET)
	{
		receive = USART_ReceiveData(USART2);//接收数据
		
	}
}*/
//*****************************************************************************************//
/*void USART3_IRQHandler(void)//串口3接收中断
{
  uint8_t receive;
	if(USART_GetITStatus(USART3,USART_IT_RXNE)!=RESET)
	{
		receive = USART_ReceiveData(USART3);//接收数据
		
	}
}*/
//*****************************************************************************************//
/*void UART4_IRQHandler(void)//串口4接收中断
{
  uint8_t receive;
	if(USART_GetITStatus(UART4,USART_IT_RXNE)!=RESET)
	{
		receive = USART_ReceiveData(UART4);//接收数据
		
	}
}*/
//*****************************************************************************************//
/*void UART5_IRQHandler(void)//串口5接收中断
{
  uint8_t receive;
	if(USART_GetITStatus(UART5,USART_IT_RXNE)!=RESET)
	{
		receive = USART_ReceiveData(UART5);//接收数据
		
	}
}*/
//*****************************************************************************************//
  • 2
    点赞
  • 19
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值