基于IAR6.4的STM32V3.5库工程建立.doc

  1. 1、本文档共12页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
基于IAR6.4的STM32V3.5库工程建立

The STM32F10x Standard Peripherals?library provides a rich set of examples covering the main features of each peripheral. All the examples are independent from the software toolchain.?These examples run on STMicroelectronics?STM32100E-EVAL (High-density Value line),?STM32100B-EVAL (Medium-density Value line),?STM3210C-EVAL (Connectivity?line), STM3210E-EVAL (High-density and XL-density) and STM3210B-EVAL (Medium-density)?evaluation boardsand can be easily tailored to any other supported device and development board. Only source files are provided for each example and user can tailor the provided?project template to run the selected example with his preferred toolchain. How to proceed? Copy the files?main.c,?main.h?(if exists),?stm32f10x_it.c,?system_stm32f10x.c,?stm32f10x_it.h,?stm32f10x_conf.h?and any other source files from the specified example to your toolchain folder under?Project\STM32F10x_StdPeriph_Template. This project folder contains already all toolchain files needed for creating projects for STM32F10x microcontrollers. Open your preferred toolchain If needed, add in the project list the additional files required to run the example (refer to your example readme file) Rebuild all files and load your image into target memory Run the example 第一步:建立工程,增加group和源文件 首先打开IAR Wmbeded Workbench,”Project”(”Creat New Project”建立一个工程,命名选择路径保存 文件名可以随便取 第二步 加载文件 在工程目录下新建三个文件夹,分别为FWlib、CMSIS、USER。新建的USER用来存放工程文件和用户代码,包括主函数main.c。 FWlib用来存放STM32库里面的inc和src这两个文件,这两个文件包含了芯片上的所有驱动。CMSIS用来存放库为我们自带的启动文件和一些M3系列通用的文件。 (1)将STM32F10x_StdPeriph_Lib_V3.5.0\Libraries\STM32F10x_StdPeriph_Driver的inc跟src这两个文件夹拷贝到FWlib文件夹中。 (2)将STM32F10x_StdPeriph_Lib_V3.5.0\Project\STM32F10x_StdPeriph_Template下的 main.c、stm32f10x_conf.h、stm32f10x_it.h、 stm32f10x_it.c 、system_stm32f10x.c(不要) 拷贝到USER目录下。 stm32f10x_it.h、和stm32f10x_it.c这两个文件里面是中断函数,里面为空,并没有写任何的中断服务程序。stm32f10x_conf.h是用户需要配置的头文件,当我们需要用到芯片中的某部分外设的驱动时,我们只需要在该文件下将该驱动的头文件包含进来即可,片上外设的驱动在src文件夹中,inc文件夹里面是它们的头文件。这三个文件是用户在编程时需要修改的文件,其他库文件一般不需要修改。syst

文档评论(0)

dajuhyy + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档