您的位置 首页 产品

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

设定UART1时钟设定发送脚功能串口设置,使能#includestm32f10x.hvoidRCC_Configuration(void);voidGPIO_Configuration(void);v

设定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);

}

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/xinpin/chanpin/268260.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部