stm32 是怎么与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"
问题很不错,谢谢小编的提问
很好