这些小活动你都参加了吗?快来围观一下吧!>>
电子产品世界 » 论坛首页 » 嵌入式开发 » MCU » STM32学习笔记(usart)

共5条 1/1 1 跳转至

STM32学习笔记(usart)

高工
2012-11-27 15:01:19     打赏

实验内容:通过串口向上位机发送单个的字符和字符串
实验目的:熟悉串口的配置,为后续试验做好准备工作
串口相关配置函数
#include "stm32f10x.h"
void Uart1_Init(void)
{
//uart 的GPIO管脚初始化 PA9 usart1_TX PA10 USART_RX
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
GPIO_InitTypeDef GPIO_InitStructure;

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_Init(GPIOA,&GPIO_InitStructure);


RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1,ENABLE);//只有串口1 使用72M,其他串口使用36M
USART_InitTypeDef USART_InitStructure;
//串口参数配置:115200,8,1,无奇偶校验,无硬流量控制 ,使能发送和接收
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);

//使能串口中断,并设置优先级
// NVIC_InitTypeDef NVIC_InitStructure;
// NVIC_InitStructure.NVIC_IRQChannel = USART1_IRQChannel;
// NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 1;//USART1_IRQChannel_Priority;
// NVIC_InitStructure.NVIC_IRQChannelSubPriority=0;
// NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
// NVIC_Init(&NVIC_InitStructure);

USART_Cmd(USART1, ENABLE);

}
/*发送字符是通过查询字符串的状态来来不断的发送下一个数据。接受数据是通过中断来实现的,把接受的数据放入缓冲区,来实现。*/
//发送一个字符

void Usart_SendData(unsigned char x)
{
USART_SendData(USART1,x);
while(USART_GetFlagStatus(USART1,USART_FLAG_TXE)!=SET);//查询发送数完成志位,等待发送完毕
}


//发送字符串
//void PrintUart1(unsigned char *Str)
//{ while(*Str)
// {
// USART_SendData(USART1, (unsigned char)*Str++);
// while (USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET);
// }
//}
LED相关配置函数
#include "stm32f10x.h"

void Delay(void)
{
unsigned long ik;
for(ik=0;ik<0xffff8;ik++);
}
//由于LED4与液晶屏复用,故此处屏蔽掉了LED4
void LedBlink(unsigned int x)
{
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOF,ENABLE);
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_7|GPIO_Pin_9|GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;
GPIO_Init(GPIOF,&GPIO_InitStructure);

switch (x)
{
case 0:
GPIO_SetBits(GPIOF,GPIO_Pin_7 | GPIO_Pin_9 | GPIO_Pin_10);
Delay();
GPIO_ResetBits(GPIOF,GPIO_Pin_7 | GPIO_Pin_9 | GPIO_Pin_10);
Delay();
break ;
case 1:
GPIO_SetBits(GPIOF,GPIO_Pin_7 | GPIO_Pin_6 | GPIO_Pin_10);
GPIO_ResetBits(GPIOF,GPIO_Pin_9);
Delay();
GPIO_SetBits(GPIOF,GPIO_Pin_9);
Delay();
break ;
case 2:
GPIO_SetBits(GPIOF,GPIO_Pin_7 | GPIO_Pin_6 | GPIO_Pin_9);
GPIO_ResetBits(GPIOF,GPIO_Pin_10);
Delay();
GPIO_SetBits(GPIOF,GPIO_Pin_10);
Delay();
break ;
case 3:
GPIO_SetBits(GPIOF,GPIO_Pin_6 | GPIO_Pin_9 | GPIO_Pin_10);
GPIO_ResetBits(GPIOF,GPIO_Pin_7);
Delay();
GPIO_SetBits(GPIOF,GPIO_Pin_7);
Delay();
break ;

default:
break;

}

}

主函数
#include "stm32f10x.h"
#include "led.h"
#include "uart.h"

int main(void)
{
Uart1_Init();
//发送单个字符
Usart_SendData(0x33);
Delay();
Usart_SendData(0x44);
Delay();
// 发送字符串
unsigned char ss[]="STM32";
unsigned char *p;
p=ss;
PrintUart1(p);
while (1)
{
LedBlink(2);//LED2闪烁
}
}
此例程还存在一个问题,在串口初始化函数完成之后,自动发送一个字符”80“,至今没找出是哪里出了岔子,请高手指点,多谢




关键词: STM32     学习     笔记     usart     发送     USAR    

院士
2012-11-27 15:06:46     打赏
2楼
楼主可以先查询串口的状态,然后再发送数据。try it..……

高工
2012-11-27 15:15:05     打赏
3楼
出现这个状况是在我发送数据之前产生的,初始化完成(Usart_Init())还没开始发送呢,上位机就收到了“80”啦。

院士
2012-11-27 22:25:04     打赏
4楼
楼主 这个帖子要继续啊~~
一定要搞定这个串口通讯……

菜鸟
2013-07-23 11:54:39     打赏
5楼

学习学习


共5条 1/1 1 跳转至

回复

匿名不能发帖!请先 [ 登陆 注册 ]