STM32 串口通讯 发送 接收
扫描二维码
随时随地手机看文章
STM32的使用有利有弊,种类多---但是种类有太多,资料也是比较乱的,还有就是库的调用,经常忘记一些函数的使用------比如最常用的串口------
------------------------------------------------------------------------------USART ----设置-------------------------------
void USART1_Config(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
USART_InitTypeDef USART_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1 | RCC_APB2Periph_GPIOA, ENABLE); //USART1--时钟--与对应--GPIO--时钟开启
//USART1的Tx---GPIO----PA.09----复用推挽输出
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);
//USART1的Rx---GPIO----PA.10----浮空输入
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_Init(GPIOA, &GPIO_InitStructure);
//USART1的模式配置
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);
USART_ClearFlag(USART1,USART_FLAG_TC);//清除串口1发送中断,否则第一个数不会发生
USART_ITConfig(USART1, USART_IT_RXNE, ENABLE);//接收中断使能----一般是在中断中需要用数组将接收到的数据保存起来时使用
USART_Cmd(USART1, ENABLE);//使能USART1
}
-----------------------------------------/重定向c库函数----printf----到USART1-----------------------------------
int fputc(int ch, FILE *f)
{
USART_SendData(USART1, (uint8_t) ch); //发送一个字节数据到USART1
while (USART_GetFlagStatus(USART1, USART_FLAG_TC) == RESET); // 等待发送完毕
return (ch);
}
-----------------------------------------/重定向c库函数----scanf------到USART1-----------------------
int fgetc(FILE *f)
{
while (USART_GetFlagStatus(USART1, USART_FLAG_RXNE) == RESET); //等待串口1输入数据
return (int)USART_ReceiveData(USART1);
}
------上面两个重定向----是将原来C库的函数与现在硬件的相对应---------
------我们也可以自己编写相似函数--------运用基本的两个函数----发送---USART_SendData()-----接收------USART_ReceiveData()---
-----------------************************************************-------比如--------%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%-----
void MyPrintfByte(unsigned char byte) //串口发送一个字节
{
USART_SendData(USART1, byte); //通过库函数 发送数据
while( USART_GetFlagStatus(USART1,USART_FLAG_TC)!= SET); //等待发送完成,检测 USART_FLAG_TC 是否置1
}
---------------------------------------------
void MyPrintfStr(unsigned char *s) //发送字符串 函数--指针--
{
uint8_t i=0; //定义一个局部变量 用来 发送字符串 ++运算
while(s[i]!='