stm32快速学习4——串口发送字符

嵌入式系统 时间:2016-11-17来源:网络
设定UART1时钟

设定发送脚功能

串口设置,使能

#include"stm32f10x.h"

voidRCC_Configuration(void);

voidGPIO_Configuration(void);

voidUSART_Configuration(void);

unsignedcharstr[]="A";

intmain(void)

{

RCC_Configuration();

GPIO_Configuration();

USART_Configuration();

USART_SendData(USART1,str[0]);

while(1);

}

voidRCC_Configuration(void)

{

RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1 |RCC_APB2Periph_GPIOA,ENABLE);

}

voidGPIO_Configuration(void)

{

GPIO_InitTypeDefGPIO_InitStructure;

/*只设定了发送*/

GPIO_InitStructure.GPIO_Pin=GPIO_Pin_9;

GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;

GPIO_InitStructure.GPIO_Mode=GPIO_Mode_AF_PP;

GPIO_Init(GPIOA,&GPIO_InitStructure);

}

voidUSART_Configuration(void)

{

USART_InitTypeDefUSART_InitStructure;

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_Tx;/*只设定了发送*/

USART_Init(USART1,&USART_InitStructure);

USART_Cmd(USART1,ENABLE);

}

关键词: stm32串口发送字

加入微信
获取电子行业最新资讯
搜索微信公众号:EEPW

或用微信扫描左侧二维码

相关文章

查看电脑版