• 大小: 505KB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2021-05-28
  • 语言: 其他
  • 标签: STM32F103  IAR  

资源简介

用IAR编译器编译的STM32F103的工程模板程序,有需要的朋友可以下载去借鉴借鉴!

资源截图

代码片段和文件信息

#include “stm32f10x.h“
#include “led.h“

//////////////////////////////////////////////////////////////////////////////////  
//本程序只供学习使用,未经作者许可,不得用于其它任何用途
//Mini STM32开发板
//LED驱动代码    
//正点原子@ALIENTEK
//技术论坛:www.openedv.com
//修改日期:2012/5/27
//版本:V1.0
//版权所有,盗版必究。
//Copyright(C) 正点原子 2009-2019
//All rights reserved   
//////////////////////////////////////////////////////////////////////////////////     

//初始化PA8和PD2为输出口.并使能这两个口的时钟     
//LED IO初始化
void LED_Init(void)
{
   GPIO_InitTypeDef  GPIO_InitStructure;
          
   RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB ENABLE);   //使能PAB端口时钟
          
   GPIO_InitStructure.GPIO_Pin = GPIO_Pin_All;                    //LED0-->PB.8 端口配置
   GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_OD;    //推挽输出
   GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
   GPIO_Init(GPIOB &GPIO_InitStructure);
   GPIO_SetBits(GPIOBGPIO_Pin_All);   //PB  输出高
  
}
 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1056  2015-08-02 09:01  工程模板\HARDWARE\LED\led.c

     文件        457  2015-07-24 09:23  工程模板\HARDWARE\LED\led.h

     文件       1320  2015-08-25 08:34  工程模板\OBJ\build\Debug\Exe\project.bin

     文件     104176  2015-08-25 08:34  工程模板\OBJ\build\Debug\Exe\project.out

     文件      11164  2015-08-25 08:33  工程模板\OBJ\build\Debug\Obj\delay.o

     文件       6876  2015-08-25 08:33  工程模板\OBJ\build\Debug\Obj\led.o

     文件       6636  2015-08-25 08:33  工程模板\OBJ\build\Debug\Obj\main.o

     文件      13988  2015-08-25 08:33  工程模板\OBJ\build\Debug\Obj\misc.o

     文件       2559  2015-10-04 20:23  工程模板\OBJ\build\Debug\Obj\project.pbd

     文件      34636  2015-08-24 16:56  工程模板\OBJ\build\Debug\Obj\startup_stm32f10x_md.o

     文件      69356  2015-08-25 08:33  工程模板\OBJ\build\Debug\Obj\stm32f10x_adc.o

     文件      23800  2015-08-25 08:33  工程模板\OBJ\build\Debug\Obj\stm32f10x_bkp.o

     文件      59272  2015-08-25 08:33  工程模板\OBJ\build\Debug\Obj\stm32f10x_can.o

     文件      27736  2015-08-25 08:33  工程模板\OBJ\build\Debug\Obj\stm32f10x_cec.o

     文件      14092  2015-08-25 08:33  工程模板\OBJ\build\Debug\Obj\stm32f10x_crc.o

     文件      25828  2015-08-25 08:33  工程模板\OBJ\build\Debug\Obj\stm32f10x_dac.o

     文件       9616  2015-08-25 08:33  工程模板\OBJ\build\Debug\Obj\stm32f10x_dbgmcu.o

     文件      25832  2015-08-25 08:33  工程模板\OBJ\build\Debug\Obj\stm32f10x_dma.o

     文件      18692  2015-08-25 08:33  工程模板\OBJ\build\Debug\Obj\stm32f10x_exti.o

     文件      56920  2015-08-25 08:33  工程模板\OBJ\build\Debug\Obj\stm32f10x_flash.o

     文件      42064  2015-08-25 08:33  工程模板\OBJ\build\Debug\Obj\stm32f10x_fsmc.o

     文件      38280  2015-08-25 08:33  工程模板\OBJ\build\Debug\Obj\stm32f10x_gpio.o

     文件      62972  2015-08-25 08:33  工程模板\OBJ\build\Debug\Obj\stm32f10x_i2c.o

     文件      15536  2015-08-25 08:33  工程模板\OBJ\build\Debug\Obj\stm32f10x_it.o

     文件      14212  2015-08-25 08:33  工程模板\OBJ\build\Debug\Obj\stm32f10x_iwdg.o

     文件      19480  2015-08-25 08:33  工程模板\OBJ\build\Debug\Obj\stm32f10x_pwr.o

     文件      61136  2015-08-25 08:33  工程模板\OBJ\build\Debug\Obj\stm32f10x_rcc.o

     文件      27392  2015-08-25 08:33  工程模板\OBJ\build\Debug\Obj\stm32f10x_rtc.o

     文件      52984  2015-08-25 08:34  工程模板\OBJ\build\Debug\Obj\stm32f10x_sdio.o

     文件      46060  2015-08-25 08:34  工程模板\OBJ\build\Debug\Obj\stm32f10x_spi.o

............此处省略104个文件信息

评论

共有 条评论