天天看點

function "FLASH_Unlock" declared implicitly解決辦法

  有時在編譯STM32工程是會出現 function "FLASH_Unlock" declared implicitly,解決辦法:

一、在新版本的庫中

其實隻要釋放配置檔案 stm32f10x_conf.h中的 #include "stm32f10x_flash.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"

 #include "misc.h"

二、舊版本庫中

#define _FLASH

  去掉注釋即可

繼續閱讀