stm32教你如何編譯出LIB文件
的庫文件:
本文引用地址:http://www.ex-cimer.com/article/201612/324463.htm
而不是像DX32的例程那樣一堆C:
那么,本技巧篇例程就是教大家怎么生成那個.LIB 的文件的.
首先打開本程序,大家看到的整個工程就只有庫文件:
因為這是把STM32的函數(shù)庫編譯成庫的形式,所以你只需要包含函數(shù)庫就行.
然后注意一點,stm32f10x_conf.h 文件中,所有的include都要開放
#include "stm32f10x_adc.h"
#include "stm32f10x_bkp.h"
#include "stm32f10x_can.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"
#include "misc.h" /* High level functions for NVIC and SysTick (add-on to CMSIS functions)
*/
這是因為當這堆C文件編譯成*.LIB后,里面的內(nèi)容將是恒定的,不能裁減的.(這是C語言的理
念,跟編譯器什么的無關(guān)),所以我們必須開放所有H 文件,這樣編譯出來的LIB 文件才是全能
的.這個理解,就和普通的DX32例程中包含一大堆C文件的意義是一樣的.只不過是我們先把
庫函數(shù)那部分預(yù)先編譯成LIB 文件.
評論