您的位置 首页 国产IC

STM32 之 UART1(2)

(2)Init_External_Device.cC语言:Codee#14663#includeincludes.h/*****************************************

(2)Init_External_Device.c

C言语:Codee#14663

#include “includes.h”

/*******************************************************************************
== 全局变量 ==
*******************************************************************************/

//=== UART1_RX变量,TX变量 ===========================================
unsignedcharUart1_Rx;// 承受一个字符变量
unsignedcharUart1_Tx;// 发送一个字符变量

//=== 准确延时 =======================================================
vu32TimingDelay;// 准确延时在SysTick中止里用的计数变量

/*******************************************************************************
* Function Name : RCC_Configuration
* Description : Configures the different system clocks.
* Input : None
* Output : None
* Return : None
*******************************************************************************/
voidRCC_Configuration(void)
{
ErrorStatusHSEStartUpStatus;

//将外设 RCC存放器重设为缺省值
RCC_DeInit();

//设置外部高速晶振(HSE)
RCC_HSEConfig(RCC_HSE_ON);

//等候 HSE 起振
HSEStartUpStatus=RCC_WaitForHSEStartUp();

if(HSEStartUpStatus==SUCCESS)
{
//预取指缓存使能
FLASH_PrefetchBufferCmd(FLASH_PrefetchBuffer_Enable);

//设置代码延时值
//FLASH_Latency_2 2 延时周期
FLASH_SetLatency(FLASH_Latency_2);

//设置 AHB 时钟(HCLK)
//RCC_SYSCLK_Div1 AHB 时钟 = 体系时钟
RCC_HCLKConfig(RCC_SYSCLK_Div1);

//设置高速 AHB 时钟(PCLK2)
//RCC_HCLK_Div2 APB1 时钟 = HCLK / 2
RCC_PCLK2Config(RCC_HCLK_Div2);

//设置低速 AHB 时钟(PCLK1)
//RCC_HCLK_Div2 APB1 时钟 = HCLK / 2
RCC_PCLK1Config(RCC_HCLK_Div2);

// PLLCLK = 8MHz * 9 = 72 MHz
//设置 PLL 时钟源及倍频系数
RCC_PLLConfig(RCC_PLLSource_HSE_Div1,RCC_PLLMul_9);

//使能或许失能 PLL
RCC_PLLCmd(ENABLE);

//等候指定的 RCC 标志位设置成功 等候PLL初始化成功
while(RCC_GetFlagStatus(RCC_FLAG_PLLRDY)==RESET)
{
}

//设置体系时钟(SYSCLK) 设置PLL为体系时钟源
RCC_SYSCLKConfig(RCC_SYSCLKSource_PLLCLK);

//等候PLL成功用作于体系时钟的时钟源
// 0x00:HSI 作为体系时钟
// 0x04:HSE作为体系时钟
// 0x08:PLL作为体系时钟
while(RCC_GetSYSCLKSource()!=0x08)
{
}
}

//RCC_APB2PeriphClockCmd(RCC_APB2Periph_ALL, ENABLE);

//使能或许失能 APB2 外设时钟
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA|RCC_APB2Periph_AFIO,ENABLE);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB,ENABLE);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC,ENABLE);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOD,ENABLE);
// Enable USART1 clocks
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1,ENABLE);

}

/*******************************************************************************
* Function Name : SysTick_Config SysTick设置
* Description : Configures SysTick
* Input : None
* Output : None
* Return : None
*******************************************************************************/
voidSysTick_Config(void)
{
/* Disable SysTick Counter */
SysTick_CounterCmd(SysTick_Counter_Disable);

/* Disable the SysTick Interrupt */
SysTick_ITConfig(DISABLE);

/* Configure HCLK clock as SysTick clock source */
SysTick_CLKSourceConfig(SysTick_CLKSource_HCLK_Div8);

/* SysTick interrupt each 1000 Hz with HCLK equal to 72MHz */
SysTick_SetReload(9000);

/* Enable the SysTick Interrupt */
SysTick_ITConfig(ENABLE);

}

/*******************************************************************************
* Function Name : NVIC_Configuration
* Description : Configures NVIC and Vector Table base location.
* Input : None
* Output : None
* Return : None
*******************************************************************************/
voidNVIC_Configuration(void)
{
NVIC_InitTypeDefNVIC_InitStructure1_UART1;

//===== Default ======================================================
#ifdef VECT_TAB_RAM
/* Set the Vector Table base location at 0x20000000 */
NVIC_SetVectorTable(NVIC_VectTab_RAM,0x0);
#else/* VECT_TAB_FLASH */
/* Set the Vector Table base location at 0x08000000 */
NVIC_SetVectorTable(NVIC_VectTab_FLASH,0x0);
#endif

//===== NVIC_UART1 ===================================================
/* Configure the NVIC Preemption Priority Bits */
NVIC_PriorityGroupConfig(NVIC_PriorityGroup_0);

/* Enable the USART1 Interrupt */
NVIC_InitStructure1_UART1.NVIC_IRQChannel=USART1_IRQChannel;// 装备使能指定的IRQ(Interrupt ReQuest中止请求)通道
NVIC_InitStructure1_UART1.NVIC_IRQChannelPreemptionPriority=0;// 装备IRQ的 组 优先级
NVIC_InitStructure1_UART1.NVIC_IRQChannelSubPriority=0;// 装备IRQ的 从 优先级
NVIC_InitStructure1_UART1.NVIC_IRQChannelCmd=ENABLE;// 装备IRQ 使能
NVIC_Init(&NVIC_InitStructure1_UART1);// 初始化 UART1_IRQ
}

/*******************************************************************************
* Function Name : UART1_Configuration
* Description : Configures the uart1
* Input : None
* Output : None
* Return : None
*******************************************************************************/
voidUART1_Configuration(void)
{
USART_InitTypeDefUSART_InitStructure_UART1;
/* USART1 configured as follow:
– BaudRate = 9600 baud
– Word Length = 8 Bits
– One Stop Bit
– No parity
– Hardware flow control disabled (RTS and CTS signals)
– Receive and transmit enabled
*/
USART_InitStructure_UART1.USART_BaudRate=9600;// 装备UART1 波特率为9600
USART_InitStructure_UART1.USART_WordLength=USART_WordLength_8b;// 装备UART1 传输过程中每一帧的数据位数为 8位
USART_InitStructure_UART1.USART_StopBits=USART_StopBits_1;// 装备UART1 发送中止位 为1个
USART_InitStructure_UART1.USART_Parity=USART_Parity_No;// 装备UART1 奇偶效验形式 为无奇偶效验
USART_InitStructure_UART1.USART_HardwareFlowControl=USART_HardwareFlowControl_None;// 装备UART1 硬件流操控 为无硬件流操控
USART_InitStructure_UART1.USART_Mode=USART_Mode_Rx|USART_Mode_Tx;// 装备UART1 使能发射和承受形式

/* Configure the USART1*/
USART_Init(USART1,&USART_InitStructure_UART1);// 初始化UART1

/* Enable USART1 Receive and Transmit interrupts */
USART_ITConfig(USART1,USART_IT_RXNE,ENABLE);// 装备UART1承受中止使能

/* Enable the USART1 */
USART_Cmd(USART1,ENABLE);// 使能UART1
}

/*******************************************************************************
* Function Name : GPIO_Configuration
* Description : Configures the different GPIO ports.
* Input : None
* Output : None
* Return : None
*******************************************************************************/
voidGPIO_Configuration(void)
{
GPIO_InitTypeDefGPIO_InitStructure_LED_PORTB;
GPIO_InitTypeDefGPIO_InitStructure_KEY_PORTA;
GPIO_InitTypeDefGPIO_InitStructure_KEY_PORTB;
GPIO_InitTypeDefGPIO_InitStructure_KEY_PORTC;
GPIO_InitTypeDefGPIO_InitStructure_UART1_TX_PORTA;
GPIO_InitTypeDefGPIO_InitStructure_UART1_RX_PORTA;

//==== LED =======================================================
GPIO_InitStructure_LED_PORTB.GPIO_Pin=GPIO_Pin_12|GPIO_Pin_13|GPIO_Pin_14|GPIO_Pin_15;
GPIO_InitStructure_LED_PORTB.GPIO_Speed=GPIO_Speed_50MHz;
GPIO_InitStructure_LED_PORTB.GPIO_Mode=GPIO_Mode_Out_PP;//推挽输出
GPIO_Init(GPIOB,&GPIO_InitStructure_LED_PORTB);

//==== KEY =======================================================
GPIO_InitStructure_KEY_PORTA.GPIO_Pin=GPIO_Pin_0;
GPIO_InitStructure_KEY_PORTA.GPIO_Speed=GPIO_Speed_50MHz;
GPIO_InitStructure_KEY_PORTA.GPIO_Mode=GPIO_Mode_IPU;//上拉输入
GPIO_Init(GPIOA,&GPIO_InitStructure_KEY_PORTA);

GPIO_InitStructure_KEY_PORTB.GPIO_Pin=GPIO_Pin_7;
GPIO_InitStructure_KEY_PORTB.GPIO_Speed=GPIO_Speed_50MHz;
GPIO_InitStructure_KEY_PORTB.GPIO_Mode=GPIO_Mode_IPU;//上拉输入
GPIO_Init(GPIOB,&GPIO_InitStructure_KEY_PORTB);

GPIO_InitStructure_KEY_PORTC.GPIO_Pin=GPIO_Pin_13|GPIO_Pin_14|GPIO_Pin_15;
GPIO_InitStructure_KEY_PORTC.GPIO_Speed=GPIO_Speed_50MHz;
GPIO_InitStructure_KEY_PORTC.GPIO_Mode=GPIO_Mode_IPU;//上拉输入
GPIO_Init(GPIOC,&GPIO_InitStructure_KEY_PORTC);

//==== UART1 ======================================================
// Configure USART1_Tx as alternate function push-pull
GPIO_InitStructure_UART1_TX_PORTA.GPIO_Pin=GPIO_Pin_9;
GPIO_InitStructure_UART1_TX_PORTA.GPIO_Speed=GPIO_Speed_50MHz;
GPIO_InitStructure_UART1_TX_PORTA.GPIO_Mode=GPIO_Mode_AF_PP;//复用推挽输出
GPIO_Init(GPIOA,&GPIO_InitStructure_UART1_TX_PORTA);

// Configure USART1_Rx as input floating
GPIO_InitStructure_UART1_RX_PORTA.GPIO_Pin=GPIO_Pin_10;
GPIO_InitStructure_UART1_RX_PORTA.GPIO_Speed=GPIO_Speed_50MHz;
GPIO_InitStructure_UART1_RX_PORTA.GPIO_Mode=GPIO_Mode_IN_FLOATING;// 悬浮输入
GPIO_Init(GPIOA,&GPIO_InitStructure_UART1_RX_PORTA);

}

/*******************************************************************************
* Function Name : 准确延时函数
*******************************************************************************/
voidDelay_Ms(u32nTime)
{
/* Enable the SysTick Counter */
SysTick_CounterCmd(SysTick_Counter_Enable);

TimingDelay=nTime;

while(TimingDelay!=0);

/* Disable SysTick Counter */
SysTick_CounterCmd(SysTick_Counter_Disable);
/* Clear SysTick Counter */
SysTick_CounterCmd(SysTick_Counter_Clear);
}

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/bandaoti/ic/252208.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部