其次按照使用产品的具体型号选择具体的启动文件,加入工程。文件主要按照使用产品的容量进行区分,根据产品容量进行选择即可。每个文件的具体含义可以在“stm32f10x.h”文件中找到对应的说明,摘录如下: [url=]file:///C:/Users/asus/AppData/Local/Temp/ksohtml/wps_clip_image-24940.png[/url] 1 #if !defined (STM32F10X_LD) && !defined (STM32F10X_LD_VL) && !defined (STM32F10X_MD) && !defined (STM32F10X_MD_VL) && !defined (STM32F10X_HD) && !defined (STM32F10X_HD_VL) && !defined (STM32F10X_XL) && !defined (STM32F10X_CL) 2 3 /* #define STM32F10X_LD */ /*!< STM32F10X_LD: STM32 Low density devices */ 4 5 /* #define STM32F10X_LD_VL */ /*!< STM32F10X_LD_VL: STM32 Low density Value Line devices */ 6 7 /* #define STM32F10X_MD */ /*!< STM32F10X_MD: STM32 Medium density devices */ 8 9 /* #define STM32F10X_MD_VL */ /*!< STM32F10X_MD_VL: STM32 Medium density Value Line devices */ /* #define STM32F10X_HD */ /*!< STM32F10X_HD: STM32 High density devices */ 10 11 /* #define STM32F10X_HD_VL */ /*!< STM32F10X_HD_VL: STM32 High density value line devices */ 12 13 /* #define STM32F10X_XL */ /*!< STM32F10X_XL: STM32 XL-density devices */ 14 15 /* #define STM32F10X_CL */ /*!< STM32F10X_CL: STM32 Connectivity line devices */ 16 17 #endif 18 19 /* Tip: To avoid modifying this file each time you need to switch between these 20 21 devices, you can define the device in your toolchain compiler preprocessor. 22 23 - Low-density devices are STM32F101xx, STM32F102xx and STM32F103xx microcontrollers 24 25 where the Flash memory density ranges between 16 and 32 Kbytes. 26 27 - Low-density value line devices are STM32F100xx microcontrollers where the Flash 28 29 memory density ranges between 16 and 32 Kbytes. 30 31 - Medium-density devices are STM32F101xx, STM32F102xx and STM32F103xx microcontrollers 32 33 where the Flash memory density ranges between 64 and 128 Kbytes. 34 35 - Medium-density value line devices are STM32F100xx microcontrollers where the 36 37 Flash memory density ranges between 64 and 128 Kbytes. 38 39 - High-density devices are STM32F101xx and STM32F103xx microcontrollers where 40 41 the Flash memory density ranges between 256 and 512 Kbytes. 42 43 - High-density value line devices are STM32F100xx microcontrollers where the 44 45 Flash memory density ranges between 256 and 512 Kbytes. 46 47 - XL-density devices are STM32F101xx and STM32F103xx microcontrollers where 48 49 the Flash memory density ranges between 512 and 1024 Kbytes. 50 51 - Connectivity line devices are STM32F105xx and STM32F107xx microcontrollers. 52 53 */ [url=]file:///C:/Users/asus/AppData/Local/Temp/ksohtml/wps_clip_image-11543.png[/url] “stm32f10x.h”是整个标准外设库的入口文件,这个文件包含了STM32F10x全系列所有外设寄存器的定义(寄存器的基地址和布局)、位定义、中断向量表、存储空间的地址映射等。为了是这个文件适用于不同系列的产品,程序中是通过宏定义来实现不同产品的匹配的,上面这段程序的注释中已经详细给出了每个启动文件所对应的产品系列,与之对应,也要相应的修改这个入口文件,需要根据所使用的产品系列正确的注释/去掉相应的注释define。在这段程序的下方同样有这样的一个注释程序/*#define USE_STDPERIPH_DRIVER*/ 用于选择是否使用标准外设库,如果保留这个注释,则用户开发程序可以基于直接访问“stm32f10x.h”中定义的外设寄存器,所有的操作均基于寄存器完成,目前不使用固件库的单片机开发,如51、AVR、MSP430等其实都是采用此种方式,通过在对应型号的头文件中进行外设寄存器等方面的定义,从而在程序中对相应的寄存器操作完成相应的功能设计。 如果去掉/*#define USE_STDPERIPH_DRIVER*/的注释,则是使用标准外设库进行开发,用户需要使用在文件“stm32f10x_conf.h”中,选择要用的外设,外设同样是通过注释/去掉注释的方式来选择。示例程序如下: [url=]file:///C:/Users/asus/AppData/Local/Temp/ksohtml/wps_clip_image-27678.png[/url] 1 /* Uncomment the line below to enable peripheral header file inclusion */ 2 3 #include "stm32f10x_adc.h" 4 5 /* #include "stm32f10x_bkp.h" */ 6 7 /* #include "stm32f10x_can.h" */ 8 9 /* #include "stm32f10x_cec.h" */ 10 11 /* #include "stm32f10x_crc.h" */ 12 13 /* #include "stm32f10x_dac.h" */ 14 15 /* #include "stm32f10x_dbgmcu.h" */ 16 17 #include "stm32f10x_dma.h" 18 19 /* #include "stm32f10x_exti.h" */ 20 21 /* #include "stm32f10x_flash.h" */ 22 23 /* #include "stm32f10x_fsmc.h" */ 24 25 #include "stm32f10x_gpio.h" 26 27 /* #include "stm32f10x_i2c.h" */ 28 29 /* #include "stm32f10x_iwdg.h" */ 30 31 /* #include "stm32f10x_pwr.h" */ 32 33 #include "stm32f10x_rcc.h" 34 35 /* #include "stm32f10x_rtc.h" */ 36 37 /* #include "stm32f10x_sdio.h" */ 38 39 /* #include "stm32f10x_spi.h" */ 40 41 /* #include "stm32f10x_tim.h" */ 42 43 /* #include "stm32f10x_usart.h" */ 44 45 /* #include "stm32f10x_wwdg.h" */ 46 47 #include "misc.h" /* High level functions for NVIC and SysTick (add-on to CMSIS functions) */ [url=]file:///C:/Users/asus/AppData/Local/Temp/ksohtml/wps_clip_image-20835.png[/url] 上面一段程序来自于例程中的AD采集程序,程序使用了AD和DMA,因此去掉相应的注释,同时几乎所有的应用都需要使用复位与时钟以及通用I/O,因此这两项是必须的, 而多数程序同样要使用NVIC中断IRQ设置和SysTick时钟源设置,那么 “misc.h”这一项也是必须的。 上面已经针对具体的产品信号和程序功能进行了针对性的配置,接下来需要配置系统所使用的时钟,系统时钟在“system_stm32f10x.c”同样通过注释的方式来配置,程序如下: [url=]file:///C:/Users/asus/AppData/Local/Temp/ksohtml/wps_clip_image-24887.png[/url] #if defined (STM32F10X_LD_VL) || (defined STM32F10X_MD_VL) || (defined STM32F10X_HD_VL) /* #define SYSCLK_FREQ_HSE HSE_VALUE */ #define SYSCLK_FREQ_24MHz 24000000 #else /* #define SYSCLK_FREQ_HSE HSE_VALUE */ /* #define SYSCLK_FREQ_24MHz 24000000 */ /* #define SYSCLK_FREQ_36MHz 36000000 */ /* #define SYSCLK_FREQ_48MHz 48000000 */ /* #define SYSCLK_FREQ_56MHz 56000000 */ #define SYSCLK_FREQ_72MHz 72000000 #endif [url=]file:///C:/Users/asus/AppData/Local/Temp/ksohtml/wps_clip_image-16068.png[/url] 如果这儿没有明确的定义那么HSI时钟将会作为系统时钟。 至此,已经配置了系统的主要外部参数,这些参数主要是通过更改相关的宏定义来实现的,有些开发环境,例如Keil支持在软件设置中加入全局宏定义,因此像芯片系列定义,是否使用固件库定义等也可以通过软件添加来实现。 完成了主要参数配置以后就可以进行程序的开发了,标准外设库开发就可以使用标准外设库中提供的方便的API函数进行相应的功能设计了。在4.2.2小节中已经介绍了基于标准外设库开发的优势,配置完成后,程序中仍然可以直接更改相应寄存器的配置,通过对寄存器的操作可以提高程序的效率,因此可以使用标准外设库和寄存器操作两种相结合的方式。
|