库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)
#endif
未选择任何设备时,将会报错,所以在这之前的地“open for targe->C++”中需要预定义设备,我自己的是STM32F10X_HD。
#if !defined USE_STDPERIPH_DRIVER
#endif
#ifdef USE_STDPERIPH_DRIVER
#endif
所以也要对USE_STDPERIPH_DRIVER进行预定义,否则我们将无法使用库件库