微波EDA网,见证研发工程师的成长!
首页 > 硬件设计 > 嵌入式设计 > STM32 之 UART1(2)

STM32 之 UART1(2)

时间:12-03 来源:互联网 点击:
(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

上一篇:STM8S BEEP
下一篇:AVR 串口使用

Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top