您的位置 首页 设计

STM32 之 LED

自己的USER文件组下有3个c文件,以后会按照这个程序结构写程序。代码参考于OPELC思蛻蒙http://bbs.opelc.org/viewthread.php?tid=6441…

自己的USER文件组下有3个c文件,以后会依照这个程序结构写程序。

代码参阅于 “ OPELC思蛻蒙http://bbs.opelc.org/viewthread.php?tid=6441&extra=page%3D1”

(1)Main.c 主函数

(2)Init_External_Device.c 外设初始化函数

(3)includes.h 自己的c文件用的包括头文件

下面是源码:

(1)Main

C言语:Codee#14359
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ 试验渠道 : ST 官方三合一套件
+ 硬件 : STM32F103C8T6
+ 开发渠道 : IAR For ARM 5.40
+ 仿真器 : J-Link
+ 日期 : 2010-10-14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

#include “includes.h”

/*******************************************************************************
== Main 函数 ==
*******************************************************************************/
intmain(void)
{
RCC_Configuration();//装备体系时钟
NVIC_Configuration();//装备 NVIC 和 Vector Table

GPIO_Configuration();

//主循环
while(1)
{
delay();
//设置指定的数据端口位——LED1平息
GPIO_SetBits(GPIOB,GPIO_Pin_12);
delay();
//铲除指定的数据端口位——LED1亮
GPIO_ResetBits(GPIOB,GPIO_Pin_12);
delay();
GPIO_SetBits(GPIOB,GPIO_Pin_13);
delay();
GPIO_ResetBits(GPIOB,GPIO_Pin_13);
delay();
GPIO_SetBits(GPIOB,GPIO_Pin_14);
delay();
GPIO_ResetBits(GPIOB,GPIO_Pin_14);
delay();
GPIO_SetBits(GPIOB,GPIO_Pin_15);
delay();
GPIO_ResetBits(GPIOB,GPIO_Pin_15);

}
}

(2)Init_External_Device.c

C言语:Codee#14361
#include “includes.h”

/*******************************************************************************
* 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)
{
}
}

//使能或许失能 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);

}

/*******************************************************************************
* Function Name : NVIC_Configuration
* Description : Configures NVIC and Vector Table base location.
* Input : None
* Output : None
* Return : None
*******************************************************************************/
voidNVIC_Configuration(void)
{
#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
}

/*******************************************************************************
* Function Name : GPIO_Configuration
* Description : Configures the different GPIO ports.
* Input : None
* Output : None
* Return : None
*******************************************************************************/
voidGPIO_Configuration(void)
{
GPIO_InitTypeDefGPIO_InitStructure;

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

}

/*******************************************************************************
* Function Name : 延时函数
*******************************************************************************/

voiddelay()
{
inti;
for(i=0;i<0xfffff;i++)
;
}

(3)includes.h

C言语:Codee#14362

#ifndef INCLUDES
#define INCLUDES 1

//==============================================================================
// ★★☆☆★★ 包括文件 ★★☆☆★★
//==============================================================================
#include “stm32f10x_lib.h”
#include “stm32f10x_type.h”
#include “stm32f10x_it.h”

//==============================================================================
// ★★☆☆★★ 全局变量 ★★☆☆★★
//==============================================================================

//==============================================================================
// ★★☆☆★★ 调用函数 ★★☆☆★★
//==============================================================================
//##### 时钟部分 #############################################################
voidRCC_Configuration(void);//装备体系时钟
voidNVIC_Configuration(void);//装备 NVIC 和 Vector Table

//##### I/O部分 ##############################################################
voidGPIO_Configuration(void);//装备运用的GPIO口

//##### 其他常用函数 #########################################################
voiddelay(void);

#endif

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

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

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

微信扫一扫关注我们

返回顶部