2024stm32串口数据包解析

2024stm32串口数据包解析stm32串口接收完整的数据包/函数名称: USART2_IRQHandler功 能:串口2接收中断参 数:无返 回 值:无作 者:Yao*

stm32串口接收完整的数据包   / 函数名称: USART2_IRQHandler 功 能:串口2接收中断 参 数:无 返 回 值:无 作 者:Yao / uint8_t Uart2_Buffer[256]; //接收缓冲区 uint8_t Uart2_Rx = 0; //Uart2_Buffer下标 uint8_t Uart2_head1; //帧头1 uint8_t Uart2_head2; //帧头2 uint8_t Uart2_Len; //数据长度(第三字节以后包含crc) uint16_t Uart2_temp; //CRC16()返回值 uint8_t Uart2_Sta; //数据帧正确标志 uint8_t Uart2_tx2; //发送计数 uint16_t CRC16(uint8_t * buf, uint16_t Len); //crc16函数声明,定义未给出。返回uint16_t校验值 void USART2_IRQHandler() { if(USART_GetITStatus(USART2,USART_IT_RXNE) != RESET) { USART_ClearITPendingBit(USART2,USART_IT_RXNE); Uart2_Buffer[Uart2_Rx] = USART_ReceiveData(USART2); Uart2_Rx++; Uart2_Rx &= 0xFF; } if(Uart2_Buffer[Uart2_Rx-1] == 0xB5) //判断帧头1 Uart2_head1 = Uart2_Rx-1; else if((Uart2_Rx-1 == Uart2_head1+1)&&(Uart2_Buffer[Uart2_Rx-1] == 0x5B)) //判断帧头1数据后是否为帧头2 Uart2_head2 = Uart2_Rx-1; else if(Uart2_Rx-1 == Uart2_head2+1) //得到数据长度 Uart2_Len = Uart2_Buffer [Uart2_Rx-1]; else if(Uart2_Rx-1 == Uart2_head1 + Uart2_Len+2) //确保接收一帧数据 { Uart2_temp = CRC16(&Uart2_Buffer[Uart2_head1],Uart2_Len+1); //计算crc if(((Uart2_temp&0x00ff)==Uart2_Buffer[Uart2_head1+Uart2_Len+1])&&(((Uart2_temp>>8)&0x00ff)==Uart2_Buffer[Uart2_head1+Uart2_Len+2])) //判断crc是否正确 { Uart2_Sta = 1; //标志置1 } } if(USART_GetFlagStatus(USART2,USART_FLAG_ORE) == SET) { USART_ClearFlag(USART2,USART_FLAG_ORE); USART_ReceiveData(USART2); } if(Uart2_Sta) //检测到标志 { for(Uart2_tx2=0;Uart2_tx2 <= Uart2_Len+2;Uart2_tx2++,Uart2_head1++) USART2_SendByte(Uart2_Buffer[Uart2_head1]); //从缓冲区中第Uart2_head1字节开始,接收总共Uart2_Len+2个字节 Uart2_Rx = 0; //下标清0 Uart2_Sta = 0; //标志置0 } }

2024最新激活全家桶教程,稳定运行到2099年,请移步至置顶文章:https://sigusoft.com/99576.html

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。 文章由激活谷谷主-小谷整理,转载请注明出处:https://sigusoft.com/83250.html

(0)
上一篇 2024年 7月 28日
下一篇 2024年 7月 28日

相关推荐

关注微信