stm32固件库的配置

发布网友 发布时间:2022-04-20 11:20

我来回答

1个回答

热心网友 时间:2022-04-12 23:28

NO!NO!NO!不存在stm32f10x_conf.c这个文件。
你可以这么理解(个人理解),stm32f10x_conf.h是让你可以使用(或者禁止使用)相应的固件库模块,你可以打开stm32f10x_conf.h这个文件来看,里面有这么些东西(省略):
...
//#include "stm32f10x_dma.h"
//#include "stm32f10x_exti.h"
#include "stm32f10x_flash.h"
#include "stm32f10x_fsmc.h"
#include "stm32f10x_gpio.h"
//#include "stm32f10x_i2c.h"
//#include "stm32f10x_iwdg.h"
//#include "stm32f10x_pwr.h"
#include "stm32f10x_rcc.h"
//#include "stm32f10x_rtc.h"
//#include "stm32f10x_sdio.h"
//#include "stm32f10x_spi.h"
#include "stm32f10x_tim.h"
#include "stm32f10x_usart.h"
...
比如你想使用串口的固件库函数,那就把“#include "stm32f10x_usart.h”这句取消注释,比如你程序中并不需要使用SPI模块,那就把“#include "stm32f10x_spi.h”这句注释掉。
更简单理解,把“#include "stm32f10x_usart.h”这句取消注释,你就可以调用stm32f10x_usart.c里面的函数,把“#include "stm32f10x_spi.h”这句注释掉,你就不可以调用stm32f10x_spi.c里面的函数。追问好像模板里面这个头文件里面的都是打开的吧,这样会拖累编译执行吗

追答不会!默认的是怎么样不管,根据自己需要进行注释或取消注释即可。

声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com