专注电子技术学习与研究
当前位置:单片机教程网 >> STM32 >> 浏览文章

DEFINE:STM32F10X_HD,USE_STDPERIPH_DRIVER的原因

作者:佚名   来源:本站原创   点击数:  更新时间:2014年08月19日   【字体:

库V3.5 main等源文件中不再直接包含stm32f10x_conf.h,而是stm32f10x.h,主程序第一句话就是#include“stm32f10x.h”。而stm32f10x_conf.h被包含在了stm32f10x.h中,间接包含进了用户主程序文件。stm32f10x.h则定义了启动设置,以及所有寄存器宏定义,此文件中需要注意的有:

设备(device)

#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) 
     
     
     
     
     
     
     
     
#endif
判断是否选择了设备(device),取消下面任何一个注释,可以进行默认设备
 
 
#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)
 #error "Please select first the target STM32F10x device used in your application (in stm32f10x.h file)"
#endif
未选择任何设备时,将会报错,所以在这之前的地“open for targe->C++”中需要预定义设备,我自己的是STM32F10X_HD。
 
 
#if !defined  USE_STDPERIPH_DRIVER
 
#endif

#ifdef USE_STDPERIPH_DRIVER
  #include "stm32f10x_conf.h"
#endif
 
所以也要对USE_STDPERIPH_DRIVER进行预定义,否则我们将无法使用库件库
关闭窗口