找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 1919|回复: 0
打印 上一主题 下一主题
收起左侧

STM32单片机串口接收一帧数据

[复制链接]
跳转到指定楼层
楼主
ID:302293 发表于 2021-6-24 17:08 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
串口接收数据帧,可以做通信协议
  1. #include "sys.h"
  2. #include "usart.h"
  3. #define  len        5 //数组长度
  4. #define a PCout(13)
  5. u8 rx_buff[8];//接收缓存
  6. u8 rx_done =0;//接收完成标志
  7. u8 rx_cnt=0;//接收数据长度

  8. u8 rx3_cont=0;
  9. u8 rx3_done=0;
  10. u8 rx_data[7];//复位与步进接收缓冲区数据

  11. u8 stop_data[7];
  12. u8 num=0;     // 字节数
  13. u8 buf[5];        //接收缓冲,最大9个字节.
  14. void  MAX485_Config(void)
  15. {

  16.   GPIO_InitTypeDef GPIO_InitStructure;
  17.   RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC,ENABLE);
  18. //        RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO, ENABLE);
  19.   GPIO_InitStructure.GPIO_Pin =GPIO_Pin_13;
  20.   GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  21.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
  22.   GPIO_Init(GPIOC, &GPIO_InitStructure);
  23. a=1;
  24. }        


  25. void USART1_Config(void)
  26. {
  27. GPIO_InitTypeDef  GPIO_InitStructure;
  28. USART_InitTypeDef USART_InitStructure;
  29. NVIC_InitTypeDef NVIC_InitStructure;
  30. RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);//使能串口GPIO的时钟
  31. RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1, ENABLE);//使能串口外设的时钟
  32. GPIO_InitStructure.GPIO_Pin=GPIO_Pin_9;//将USART1 Tx的GPIO配置为推挽复用模式
  33. GPIO_InitStructure.GPIO_Mode=GPIO_Mode_AF_PP;
  34. GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;
  35. GPIO_Init(GPIOA,&GPIO_InitStructure);
  36. GPIO_InitStructure.GPIO_Pin=GPIO_Pin_10;//将USART1 Rx的GPIO配置为浮空输入模式
  37. GPIO_InitStructure.GPIO_Mode=GPIO_Mode_IN_FLOATING;
  38. GPIO_Init(GPIOA,&GPIO_InitStructure);
  39. USART_InitStructure.USART_BaudRate=115200;//配置波特率115200
  40. USART_InitStructure.USART_WordLength=USART_WordLength_8b;//配置数据字长8bit
  41. USART_InitStructure.USART_StopBits=USART_StopBits_1;//配置停止位1bit
  42. USART_InitStructure.USART_Parity=USART_Parity_No;//校验位无
  43. USART_InitStructure.USART_HardwareFlowControl=USART_HardwareFlowControl_None;//硬件流控制无
  44. USART_InitStructure.USART_Mode=USART_Mode_Rx|USART_Mode_Tx;//同时收发模式
  45. USART_Init(USART1,&USART_InitStructure);//完成串口的初始化配置

  46. NVIC_PriorityGroupConfig(NVIC_PriorityGroup_1);//嵌套向量中断控制器组选择
  47. NVIC_InitStructure.NVIC_IRQChannel=USART1_IRQn;//配置USART为中断源
  48. NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority=0;//抢断优先级
  49. NVIC_InitStructure.NVIC_IRQChannelSubPriority=1;//子优先级
  50. NVIC_InitStructure.NVIC_IRQChannelCmd=ENABLE;//使能中断
  51. NVIC_Init(&NVIC_InitStructure);//初始化配置NVIC
  52. USART_ITConfig(USART1,USART_IT_RXNE,ENABLE);//使能串口接收中断
  53. //USART_ITConfig(USART1,USART_IT_IDLE,ENABLE);//空闲中断使能
  54. USART_Cmd(USART1,ENABLE);
  55. }

  56.         
  57.         
  58. void USART1_IRQHandler(void)
  59. {

  60.    u8 res;
  61. if(USART_GetITStatus(USART1,USART_IT_RXNE)!=RESET)//接收到一个字节,进入一次接收中断
  62. {
  63. USART_ClearITPendingBit(USART1,USART_IT_RXNE);//清除接收中断标志
  64.          
  65.     res=USART_ReceiveData(USART1);//将接收的数据存入rx_buff中
  66. if(num>0)
  67.                                         {
  68.                                                 buf[num]=res;
  69.                                                 num++;
  70.                                         }
  71.                                         else if (res==0xc1)                // 包头
  72.                                         {
  73.                                                 buf[0]=0xc1;//前面写进,后面才能读
  74.                                                  num=1;
  75.                                         }
  76.                                         if(num>=len)               
  77.                                         {
  78.                                                 num=0;
  79.                                                 if(buf[(len-1)]==0x0d)         // 判断包尾
  80.                                                 {
  81.                if(buf[0]==0xc1) a=0;
  82.                else
  83.                 a=1;                                                                 

  84.      if(buf[1]==5)
  85.                  {
  86.                    a=1;
  87.                  }


  88. }
  89. }
  90. }
  91. }

复制代码


评分

参与人数 1黑币 +20 收起 理由
admin + 20 共享资料的黑币奖励!

查看全部评分

分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏1 分享淘帖 顶 踩
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|51黑电子论坛 |51黑电子论坛6群 QQ 管理员QQ:125739409;技术交流QQ群281945664

Powered by 单片机教程网

快速回复 返回顶部 返回列表