代码拉取完成,页面将自动刷新
/************************************************************************************
STM32F429的MPU6050驱动程序
简介: 串口驱动,波特率:115200 停止位:1 数据位:8 停止位:无
PA9----->Tx PA10------->Rx
作者: chendian
版本: V1.0
平台: STM32F429I-Discovery Board
日期: 2015年5月26日
*************************************************************************************/
#ifndef __UART_H_
#define __UART_H_
/**********************include***************************/
#include "stm32f4xx_usart.h"
#include <stdio.h>
/**********************define****************************/
#define BAUDRATE (115200)
#define USART1_PIN_TX GPIO_Pin_9
#define USART1_PIN_RX GPIO_Pin_10
#define USART1_PIN_GROUP GPIOA
#define USART1_PIN_TX_SOURCE GPIO_PinSource9
#define USART1_PIN_RX_SOURCE GPIO_PinSource10
#define USART1_PIN_CLOCK RCC_AHB1Periph_GPIOA
#define USART1_CTL_CLOCK RCC_APB2Periph_USART1
/*********************function**************************/
void uart_Init(void);
void uart_Config(void);
void uart_gpio_Config(void);
//int fputc(int ch, FILE *f);
//int fgetc(FILE *f);
#endif
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。