1
完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
头文件
1 ///**************************************/// 2 //author zq&jp // 3 //net zq-jp.cnblogs.com // 4 //qq 627334696 // 5 //blog zq-jp.cnblogs.com // 6 ///**************************************/// 7 8 #ifndef __USART_4_H 9 #define __USART_4_H10 11 #include "stm32f10x.h"12 #include "stm32f10x_usart.h"13 #include "misc.h"14 #include "stdarg.h"15 16 void USART4_GPIO_Configuration(void);17 void USART4_NVIC_Configuration(void);18 19 void USART4_Config(USART_TypeDef* USARTx);20 21 22 23 #endif View Code 配置程序 1 ///**************************************/// 2 //author zq&jp // 3 //net zq-jp.cnblogs.com // 4 //qq 627334696 // 5 //blog zq-jp.cnblogs.com // 6 ///**************************************/// 7 #include "USART_4.h" 8 9 10 /* Private variables ---------------------------------------------------------*/ 11 12 uint8_t TxBuffer4[] = "USART Interrupt Example: This is USART4 DEMO"; 13 uint8_t RxBuffer4[]; 14 __IO uint8_t TxCounter4 = 0x00; 15 __IO uint8_t RxCounter4 = 0x00; 16 17 18 static GPIO_InitTypeDef GPIO_InitStructure; 19 static USART_InitTypeDef USART_InitStructure; 20 21 22 /**************************************************************************** 23 * 名 称:USART_Config(USART_TypeDef* USARTx) 24 * 功 能:配置串口 25 * 入口参数: 26 * 出口参数:无 27 * 说 明: 28 * 调用方法:例如: USART_Config(USART1) 29 ****************************************************************************/ 30 void USART4_Config(USART_TypeDef* USARTx){ 31 32 RCC_APB1PeriphClockCmd(RCC_APB1Periph_UART4, ENABLE); 33 34 USART_InitStructure.USART_BaudRate = 115200; //速率115200bps 35 USART_InitStructure.USART_WordLength = USART_WordLength_8b; //数据位8位 36 USART_InitStructure.USART_StopBits = USART_StopBits_1; //停止位1位 37 USART_InitStructure.USART_Parity = USART_Parity_No; //无校验位 38 USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None; //无硬件流控 39 USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx; //收发模式 40 41 /* Configure UART4 */ 42 USART_Init(USARTx, &USART_InitStructure); //配置串口参数函数 43 44 45 /* Enable USART1 Receive and Transmit interrupts */ 46 // USART_ClearFlag(UART4,USART_IT_RXNE); 47 // USART_ITConfig(UART4, USART_IT_RXNE, ENABLE); //使能接收中断 48 // USART_ITConfig(UART4, USART_IT_TXE, ENABLE); //使能发送缓冲空中断 49 50 /* Enable the UART4 */ 51 USART_Cmd(UART4, ENABLE); 52 } 53 54 55 /**************************************************************************** 56 * 名 称:void GPIO_Configuration(void) 57 * 功 能:通用IO口配置 58 * 入口参数:无 59 * 出口参数:无 60 * 说 明: 61 * 调用方法: 62 ****************************************************************************/ 63 void USART4_GPIO_Configuration(void) 64 { 65 66 RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC, ENABLE); 67 68 /* 默认复用功能 */ 69 GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10; //USART4 TX 70 GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; //复用推挽输出 71 GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; 72 GPIO_Init(GPIOC, &GPIO_InitStructure); //A端口 73 /* 复用功能的输入引脚必须配置为输入模式(浮空/上拉/下拉的一种)*/ 74 GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11; //USART4 RX 75 GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING; //复用浮空输入 76 GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; 77 GPIO_Init(GPIOC, &GPIO_InitStructure); //A端口 78 79 // //485使能端 80 // GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0; //USART5 RX 81 // GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; //推挽输出 82 // GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; 83 // GPIO_Init(GPIOD, &GPIO_InitStructure); //D端口 84 85 } 86 87 /**************************************************************************** 88 * 名 称:void NVIC_Configuration(void) 89 * 功 能:中断源配置 90 * 入口参数:无 91 * 出口参数:无 92 * 说 明: 93 * 调用方法:无 94 ****************************************************************************/ 95 void USART4_NVIC_Configuration(void) 96 { 97 /* 结构声明*/ 98 NVIC_InitTypeDef NVIC_InitStructure; 99 100 /* Configure the NVIC Preemption Priority Bits */ 101 /* Configure one bit for preemption priority */102 /* 优先级组 说明了抢占优先级所用的位数,和响应优先级所用的位数 在这里是0, 4 103 0组: 抢占优先级占0位, 响应优先级占4位104 1组: 抢占优先级占1位, 响应优先级占3位105 2组: 抢占优先级占2位, 响应优先级占2位106 3组: 抢占优先级占3位, 响应优先级占1位107 4组: 抢占优先级占4位, 响应优先级占0位 108 */ 109 NVIC_PriorityGroupConfig(NVIC_PriorityGroup_0); 110 111 NVIC_InitStructure.NVIC_IRQChannel = UART4_IRQn; //设置串口4中断112 NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0; //抢占优先级 0113 NVIC_InitStructure.NVIC_IRQChannelSubPriority = 3; //子优先级为0114 NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE; //使能115 NVIC_Init(&NVIC_InitStructure);116 117 } View Code |
|
|
|
只有小组成员才能发言,加入小组>>
调试STM32H750的FMC总线读写PSRAM遇到的问题求解?
1777 浏览 1 评论
X-NUCLEO-IHM08M1板文档中输出电流为15Arms,15Arms是怎么得出来的呢?
1621 浏览 1 评论
1080 浏览 2 评论
STM32F030F4 HSI时钟温度测试过不去是怎么回事?
728 浏览 2 评论
ST25R3916能否对ISO15693的标签芯片进行分区域写密码?
1678 浏览 2 评论
1938浏览 9评论
STM32仿真器是选择ST-LINK还是选择J-LINK?各有什么优势啊?
731浏览 4评论
STM32F0_TIM2输出pwm2后OLED变暗或者系统重启是怎么回事?
570浏览 3评论
595浏览 3评论
stm32cubemx生成mdk-arm v4项目文件无法打开是什么原因导致的?
554浏览 3评论
小黑屋| 手机版| Archiver| 德赢Vwin官网 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-23 07:13 , Processed in 0.926656 second(s), Total 76, Slave 60 queries .
Powered by 德赢Vwin官网 网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
德赢Vwin官网 观察
版权所有 © 湖南华秋数字科技有限公司
德赢Vwin官网 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号