找回密码
 立即注册

QQ登录

只需一步,快速开始

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

基于STM32的串口5协议测试源码

[复制链接]
跳转到指定楼层
楼主
ID:225288 发表于 2018-3-13 19:29 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
这个是STM32F103ZET6的串口5测试代码,内部附带一个简单的串口协议测试。

单片机源程序如下:
  1. /*-------------------------------------------------------------------------------
  2. 文件名称:main.c
  3. 文件描述:通过串口5,使用printf函数打印信息,编译时需勾选Use MicroLIB
  4. 硬件平台:尼莫M3S开发板
  5. 编写整理:shifang
  6. 固件库  :V3.5
  7. 备    注:通过简单修改可以移植到其他开发板,部分资料来源于网络。
  8. ---------------------------------------------------------------------------------*/
  9. #include <stdio.h>
  10. #include "stm32f10x.h"
  11. #include "led.h"
  12. #include "delay.h"
  13. #include "key.h"
  14. #include "timer.h"
  15. #include "beep.h"



  16. #ifdef __GNUC__
  17.   /* With GCC/RAISONANCE, small printf (option LD Linker->Libraries->Small printf
  18.      set to 'Yes') calls __io_putchar() */
  19.   #define PUTCHAR_PROTOTYPE int __io_putchar(int ch)
  20. #else
  21.   #define PUTCHAR_PROTOTYPE int fputc(int ch, FILE *f)
  22. #endif /* __GNUC__ */

  23. int main(void)
  24. {
  25.           GPIO_InitTypeDef GPIO_InitStructure;
  26.           USART_InitTypeDef USART_InitStructure;
  27.     NVIC_InitTypeDef NVIC_InitStructure;
  28.          
  29.           RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC|RCC_APB2Periph_GPIOD, ENABLE);        //使能PORTC,PORTD时钟
  30.           RCC_APB1PeriphClockCmd(RCC_APB1Periph_UART5,ENABLE); //使能UART5
  31.           USART_DeInit(UART5);  //复位串口5
  32.           //UART5_TX   PC.12
  33.     GPIO_InitStructure.GPIO_Pin = GPIO_Pin_12; //PC.12
  34.     GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  35.     GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;        //复用推挽输出
  36.     GPIO_Init(GPIOC, &GPIO_InitStructure); //初始化PC12
  37.    
  38.     //UART5_RX          PD.2
  39.     GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2;
  40.     GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;//浮空输入
  41.     GPIO_Init(GPIOD, &GPIO_InitStructure);  //初始化PD2   
  42.        
  43.           //UART5 NVIC 配置

  44.     NVIC_InitStructure.NVIC_IRQChannel = UART5_IRQn;
  45.           NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority=3 ;//抢占优先级3
  46.           NVIC_InitStructure.NVIC_IRQChannelSubPriority = 3;                //子优先级3
  47.           NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;                        //IRQ通道使能
  48.           NVIC_Init(&NVIC_InitStructure);        //根据指定的参数初始化VIC寄存器
  49.   /* USARTx configured as follow:
  50.         - BaudRate = 9600 baud  波特率
  51.         - Word Length = 8 Bits  数据长度
  52.         - One Stop Bit          停止位
  53.         - No parity             校验方式
  54.         - Hardware flow control disabled (RTS and CTS signals) 硬件控制流
  55.         - Receive and transmit enabled                         使能发送和接收
  56.   */
  57.   USART_InitStructure.USART_BaudRate = 9600;
  58.   USART_InitStructure.USART_WordLength = USART_WordLength_8b;
  59.   USART_InitStructure.USART_StopBits = USART_StopBits_1;
  60.   USART_InitStructure.USART_Parity = USART_Parity_No;
  61.   USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
  62.   USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;

  63.   USART_Init(UART5, &USART_InitStructure);
  64.         USART_ITConfig(UART5, USART_IT_RXNE, ENABLE);//开启中断
  65.   USART_Cmd(UART5, ENABLE);                    //使能串口

  66.         LED_Init();//LED初始化
  67.   KEY_Init();//按键初始化
  68.   SysTick_Init();//延时初始化
  69.         BEEP_Init();   //蜂鸣器初始化
  70.         printf("\n\rUSART Printf Example: (德飞莱)尼莫M3S开发板串口测试程序\r输入任何信息发送,接收到同样信息");
  71.   while (1)
  72.   {
  73.         //使用printf函数循环发送固定信息
  74.         Delay_ms(500);                  
  75.   LED2_REV;       
  76.   }
  77. }


  78. PUTCHAR_PROTOTYPE
  79. {
  80.   /* Place your implementation of fputc here */
  81.   /* e.g. write a character to the USART */
  82.   USART_SendData(UART5, (uint8_t) ch);

  83.   /* 循环等待直到发送结束*/
  84.   while (USART_GetFlagStatus(UART5, USART_FLAG_TC) == RESET)
  85.   {}

  86.   return ch;
  87. }
复制代码

所有资料51hei提供下载:
串口5测试协议.zip (310.8 KB, 下载次数: 19)


评分

参与人数 1黑币 +5 收起 理由
linuxcso + 5 赞一个!

查看全部评分

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

使用道具 举报

沙发
ID:104982 发表于 2018-5-4 19:51 | 只看该作者
请问程序包括 接收中断处理吗?
回复

使用道具 举报

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

本版积分规则

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

Powered by 单片机教程网

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