微波EDA网,见证研发工程师的成长!
首页 > 研发问答 > 嵌入式设计讨论 > MCU和单片机设计讨论 > stm32 是怎么与FWLIB联系在一起的?

stm32 是怎么与FWLIB联系在一起的?

时间:10-02 整理:3721RD 点击:
请问stm32 是怎么与FWLIB联系在一起的?我的意思是是stm32中可以任意调用FWLIB库中的函数,但是在主函数中也没有看到 include“*****”之类的和FWLIB有关的头文件?所以不是很明白这个。希望各路大神能帮忙指点一下,感谢万分。

自顶一个 自顶一个

这个你要去研究一下stm32提供的启动文件,就是startup_stm32fxxx_xd.s这个文件,就大概清楚了

1.main中#include "stm32f10x.h"
2.stm32f10x.h中
#ifdef USE_STDPERIPH_DRIVER
  #include "stm32f10x_conf.h"
#endif
3.stm32f10x_conf.h中
#include "stm32f10x_adc.h"
#include "stm32f10x_bkp.h"
#include "stm32f10x_can.h"
#include "stm32f10x_cec.h"
#include "stm32f10x_crc.h"
#include "stm32f10x_dac.h"
#include "stm32f10x_dbgmcu.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_wwdg.h"

问题很不错,谢谢小编的提问

很好

Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top