STM32串口库函数版例程
时间:11-09
来源:互联网
点击:
定义:
TXD1----- PA9-US1-TX
RXD1----- PA10-US1-RX
TXD1----- PA9-US1-TX
RXD1----- PA10-US1-RX
速率:115200,n,8,1
/* Includes ------------------------------------------------------------------*/#include "stm32f10x.h"#include "platform_config.h"#include "stm32f10x_usart.h"#include "misc.h"#include "stdarg.h"/* Private variables ---------------------------------------------------------*/USART_InitTypeDef USART_InitStructure;uint8_t TxBuffer1[] = "USART Interrupt Example: This is USART1 DEMO"; uint8_t RxBuffer1[],rec_f,tx_flag;__IO uint8_t TxCounter1 = 0x00;__IO uint8_t RxCounter1 = 0x00; uint32_t Rec_Len;/* Private function prototypes -----------------------------------------------*/void RCC_Configuration(void);void GPIO_Configuration(void);void NVIC_Configuration(void);void Delay(__IO uint32_t nCount);void USART_OUT(USART_TypeDef* USARTx, uint8_t *Data,...);char *itoa(int value, char *string, int radix);void USART_Config(USART_TypeDef* USARTx);GPIO_InitTypeDef GPIO_InitStructure;USART_InitTypeDef USART_InitStruct;USART_ClockInitTypeDef USART_ClockInitStruct;/* 名 称:void ili9325_DrawPicture(u16 StartX,u16 StartY, u8 Dir,u8 *pic)* 功 能:在指定座标范围显示一副图片* 入口参数:StartX 行起始座标* StartY 列起始座标* Dir 图像显示方向 * pic 图片头指针* 出口参数:无* 说 明:图片取模格式为水平扫描,16位颜色模式 取模软件img2LCD* 调用方法:ili9325_DrawPicture(0,0,0,(u16*)demo);/void USART_Config(USART_TypeDef* USARTx){USART_InitStructure.USART_BaudRate = 115200; //速率115200bpsUSART_InitStructure.USART_WordLength = USART_WordLength_8b; //数据位8位USART_InitStructure.USART_StopBits = USART_StopBits_1; //停止位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; //收发模式/* Configure USART1 */USART_Init(USARTx, &USART_InitStructure); //配置串口参数函数/* Enable USART1 Receive and Transmit interrupts */USART_ITConfig(USART1, USART_IT_RXNE, ENABLE); //使能接收中断USART_ITConfig(USART1, USART_IT_TXE, ENABLE); //使能发送缓冲空中断 /* Enable the USART1 */USART_Cmd(USART1, ENABLE); }/* 名 称:int main(void)* 功 能:主函数* 入口参数:无* 出口参数:无* 说 明:* 调用方法:无 /int main(void){uint8_t a=0;/* System Clocks Configuration */RCC_Configuration(); //系统时钟设置/*嵌套向量中断控制器 说明了USART1抢占优先级级别0(最多1位) ,和子优先级级别0(最多7位) */ NVIC_Configuration(); //中断源配置/*对控制LED指示灯的IO口进行了初始化,将端口配置为推挽上拉输出,口线速度为50Mhz。PA9,PA10端口复用为串口1的TX,RX。在配置某个口线时,首先应对它所在的端口的时钟进行使能。否则无法配置成功,由于用到了端口B, 因此要对这个端口的时钟进行使能,同时由于用到复用IO口功能用于配置串口。因此还要使能AFIO(复用功能IO)时钟。*/GPIO_Configuration(); //端口初始化USART_Config(USART1); //串口1初始化USART_OUT(USART1,"测试串口 *\r\n"); //向串口1发送开机字符。USART_OUT(USART1,"*\r\n"); USART_OUT(USART1,"\r\n"); USART_OUT(USART1,"\r\n"); while (1){if(rec_f==1){ //判断是否收到一帧有效数据rec_f=0;USART_OUT(USART1,"\r\n您发送的信息为: \r\n"); USART_OUT(USART1,&TxBuffer1[0]);if(a==0) {GPIO_SetBits(GPIOB, GPIO_Pin_5); a=1;} //LED1 V6(V3板) V2(MINI板) 明暗闪烁 else {GPIO_ResetBits(GPIOB, GPIO_Pin_5);a=0; }}}}/* 名 称:void Delay(__IO uint32_t nCount)* 功 能:延时函数* 入口参
STM32串口库函 相关文章:
- Windows CE 进程、线程和内存管理(11-09)
- RedHatLinux新手入门教程(5)(11-12)
- uClinux介绍(11-09)
- openwebmailV1.60安装教学(11-12)
- Linux嵌入式系统开发平台选型探讨(11-09)
- Windows CE 进程、线程和内存管理(二)(11-09)