打印

STM32查询方式的USART串口简单使用

[复制链接]
2587|7
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
shyinyang|  楼主 | 2013-1-10 10:12 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
使用查询方式的USART:

设置时钟:

RCC_APB2Periph_AFIO 功能复用IO时钟
RCC_APB2Periph_GPIOA GPIOA时钟

RCC_APB2Periph_USART1 USART1时钟

你可以用
//使能串口1,PA,AFIO总线 RCC_APB2PeriphClockCmd (RCC_APB2Periph_GPIOA|RCC_APB2Periph_AFIO|RCC_APB2Periph_USART1 ,ENABLE);

或直接

RCC_APB2PeriphClockCmd(RCC_APB2Periph_ALL,ENABLE); //全部APB2外设时钟开启

注意USART2的你开启为 RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2,ENABLE);

设置GPIO:

GPIO_InitTypeDef GPIO_InitStructure;


GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; //推挽输出-TX
GPIO_Init(GPIOA, &GPIO_InitStructure);


GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING; //浮空输入-RX
GPIO_Init(GPIOA, &GPIO_InitStructure);



设置USART:

这里我用的是3.0的库相对于2.0的库来说多了一步,先说2.0

USART_InitTypeDef USART_InitStructure;

USART_StructInit(&USART_InitStructure); //装填默认值

USART_Init(USART1, &USART_InitStructure); //根据USART_InitStruct中指定的参数初始化外设USARTx寄存器
USART_Cmd(USART1, ENABLE); //启用

就好了~!

而3.0的库需要

USART_InitTypeDef USART_InitStructure;

USART_ClockInitTypeDef USART_ClockInitStructure;

USART_StructInit(&USART_InitStructure);
USART_ClockStructInit (&USART_ClockInitStructure);
USART_ClockInit(USART1, &USART_ClockInitStructure);
USART_Init(USART1, &USART_InitStructure);
USART_Cmd(USART1, ENABLE);



//只是多分出了1个 USART_ClockInitStructure 我也不知为啥要这样??为了同步异步模式?USART_InitStruct中指定的参数内容为:(2.0的)

typedef struct
{
u32 USART_BaudRate; //USART传输的波特率
u16 USART_WordLength; //一个帧中传输或者接收到的数据位数通常是8
u16 USART_StopBits; //停止位
u16 USART_Parity; //奇偶校验
u16 USART_HardwareFlowControl; //硬件流控制模式使能还是失能
u16 USART_Mode; //指定了使能或者失能发送和接收模式
u16 USART_Clock; //提示了USART时钟使能还是失能
u16 USART_CPOL; //指定了下SLCK引脚上时钟输出的极性
u16 USART_CPHA; //指定了下SLCK引脚上时钟输出的相位
u16 USART_LastBit;

//来控制是否在同步模式下,在SCLK引脚上输出最后发送的那个数据字通常用USART_LastBit_Disable
} USART_InitTypeDef;



我*~!太细了~!我只知道(9600,8,n,1)这就够了 其他的统统默认~!

USART_StructInit(&USART_InitStructure);
USART_ClockStructInit (&USART_ClockInitStructure); //2.0不用这句,这样就设好了好了~!自动为您装填了默认参数。默认的参数如下(3.0的库):

void USART_StructInit(USART_InitTypeDef* USART_InitStruct)
{

USART_InitStruct->USART_BaudRate = 9600;
USART_InitStruct->USART_WordLength = USART_WordLength_8b;
USART_InitStruct->USART_StopBits = USART_StopBits_1;
USART_InitStruct->USART_Parity = USART_Parity_No ;
USART_InitStruct->USART_Mode = USART_Mode_Rx | USART_Mode_Tx;
USART_InitStruct->USART_HardwareFlowControl = USART_HardwareFlowControl_None;
}




void USART_ClockStructInit(USART_ClockInitTypeDef* USART_ClockInitStruct)
{

USART_ClockInitStruct->USART_Clock = USART_Clock_Disable;
USART_ClockInitStruct->USART_CPOL = USART_CPOL_Low;
USART_ClockInitStruct->USART_CPHA = USART_CPHA_1Edge;
USART_ClockInitStruct->USART_LastBit = USART_LastBit_Disable;
}

/************************************************************************************************/

当然了你也可以自己设参数,比如这样。



void USART_Configuration(void)

{

USART_InitTypeDef USART_InitStructure;
USART_ClockInitTypeDef USART_ClockInitStructure;



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_ClockInitStructure.USART_Clock = USART_Clock_Disable;
USART_ClockInitStructure.USART_CPOL = USART_CPOL_Low;
USART_ClockInitStructure.USART_CPHA = USART_CPHA_2Edge;
USART_ClockInitStructure.USART_LastBit = USART_LastBit_Disable;

USART_ClockInit(USART1, &USART_ClockInitStructure);
USART_Init(USART1, &USART_InitStructure);

USART_Init(USART1, &USART_InitStructure);

USART_ClockInit(USART1, &USART_ClockInitStructure);
USART_Cmd(USART1, ENABLE);

} ////USART_ClockInitStructure.USART_CPHA= USART_CPHA_2Edge;除了这句以外其他的都和默认的参数一样,二者有啥区别我至今也不太清楚但就一般的应用来说两个都可以正常工作。



收发的方法:

1.发送

void USART1_Puts(char * str)
{
while(*str)
{
USART_SendData(USART1, *str++);

while(USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET);
}
}



USART1_Puts("hello-java~!\r\n"); //这样就发送了hello-java~!

跟C语言的printf不太一样在于\n 并没有另起一行要用个\r这样在终端上好看。

2.接收

u8 uart1_get_data; //存放接受的内容

while(1)

{

if(USART_GetFlagStatus(USART1,USART_IT_RXNE)==SET)
{
uart1_get_data = USART_ReceiveData(USART1);
USART1_Puts("\r\n获取到串口1数据:");
USART1_Putc(uart1_get_data);
USART1_Puts("\r\n");
}

}
沙发
明月小厨| | 2013-1-10 10:43 | 只看该作者
传统的UART设置如V2版简单;
但USART的设置就比较复杂了,向SPI转移;同步传输半双工的速度超级快;

使用特权

评论回复
板凳
捡漏王子| | 2013-1-10 10:56 | 只看该作者
利用库文件还是很好做的

使用特权

评论回复
地板
麦田里的守望者| | 2013-1-10 11:20 | 只看该作者
学习学习

使用特权

评论回复
5
shyinyang|  楼主 | 2013-1-11 09:56 | 只看该作者
顶一下

使用特权

评论回复
6
shyinyang|  楼主 | 2013-1-14 09:57 | 只看该作者
顶一个

使用特权

评论回复
7
shyinyang|  楼主 | 2013-1-15 12:15 | 只看该作者
不错地帖子

使用特权

评论回复
8
21世纪黄毛| | 2013-1-16 15:20 | 只看该作者
学习了。请问下那个硬件控制流是不是很少用?一般怎么设置

使用特权

评论回复
发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

个人签名:STM32F3系列公司现有货供应!STM32F0,STM32F2,STM32F3,STM32F4 银洋电子专业一级代理http://www.y-ec.com 联系电话:021-53086303  淘宝网:http://y-ec.taobao.com

1

主题

257

帖子

0

粉丝