Restructure libs source to support multi platform
[fw/stlink] / example / libstm32l_discovery / inc / stm32l1xx_flash.h
diff --git a/example/libstm32l_discovery/inc/stm32l1xx_flash.h b/example/libstm32l_discovery/inc/stm32l1xx_flash.h
deleted file mode 100644 (file)
index 0e0a6c6..0000000
+++ /dev/null
@@ -1,354 +0,0 @@
-/**\r
-  ******************************************************************************\r
-  * @file    stm32l1xx_flash.h\r
-  * @author  MCD Application Team\r
-  * @version V1.0.0\r
-  * @date    31-December-2010\r
-  * @brief   This file contains all the functions prototypes for the FLASH \r
-  *          firmware library.\r
-  ******************************************************************************\r
-  * @attention\r
-  *\r
-  * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS\r
-  * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE\r
-  * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY\r
-  * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING\r
-  * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE\r
-  * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.\r
-  *\r
-  * <h2><center>&copy; COPYRIGHT 2010 STMicroelectronics</center></h2>\r
-  ******************************************************************************  \r
-  */ \r
-\r
-/* Define to prevent recursive inclusion -------------------------------------*/\r
-#ifndef __STM32L1xx_FLASH_H\r
-#define __STM32L1xx_FLASH_H\r
-\r
-#ifdef __cplusplus\r
- extern "C" {\r
-#endif\r
-\r
-/* Includes ------------------------------------------------------------------*/\r
-#include "stm32l1xx.h"\r
-\r
-/** @addtogroup STM32L1xx_StdPeriph_Driver\r
-  * @{\r
-  */\r
-\r
-/** @addtogroup FLASH\r
-  * @{\r
-  */\r
-\r
-/* Exported types ------------------------------------------------------------*/\r
-\r
-/** \r
-  * @brief  FLASH Status  \r
-  */ \r
-typedef enum\r
-{ \r
-  FLASH_BUSY = 1,\r
-  FLASH_ERROR_WRP,\r
-  FLASH_ERROR_PROGRAM,\r
-  FLASH_COMPLETE,\r
-  FLASH_TIMEOUT\r
-}FLASH_Status;\r
-\r
-/* Exported constants --------------------------------------------------------*/\r
-  \r
-/** @defgroup FLASH_Exported_Constants\r
-  * @{\r
-  */ \r
-  \r
-/** @defgroup FLASH_Latency \r
-  * @{\r
-  */ \r
-#define FLASH_Latency_0                ((uint8_t)0x00)  /*!< FLASH Zero Latency cycle */\r
-#define FLASH_Latency_1                ((uint8_t)0x01)  /*!< FLASH One Latency cycle */\r
-\r
-#define IS_FLASH_LATENCY(LATENCY) (((LATENCY) == FLASH_Latency_0) || \\r
-                                   ((LATENCY) == FLASH_Latency_1))\r
-/**\r
-  * @}\r
-  */ \r
-\r
-/** @defgroup FLASH_Interrupts \r
-  * @{\r
-  */\r
-   \r
-#define FLASH_IT_EOP               FLASH_PECR_EOPIE  /*!< End of programming interrupt source */\r
-#define FLASH_IT_ERR               FLASH_PECR_ERRIE  /*!< Error interrupt source */\r
-#define IS_FLASH_IT(IT) ((((IT) & (uint32_t)0xFFFCFFFF) == 0x00000000) && (((IT) != 0x00000000)))\r
-/**\r
-  * @}\r
-  */ \r
-\r
-/** @defgroup FLASH_Address \r
-  * @{\r
-  */\r
-  \r
-#define IS_FLASH_DATA_ADDRESS(ADDRESS) (((ADDRESS) >= 0x08080000) && ((ADDRESS) <= 0x08080FFF))\r
-#define IS_FLASH_PROGRAM_ADDRESS(ADDRESS) (((ADDRESS) >= 0x08000000) && ((ADDRESS) <= 0x0801FFFF))  \r
-\r
-/**\r
-  * @}\r
-  */ \r
-\r
-/** @defgroup Option_Bytes_Write_Protection \r
-  * @{\r
-  */\r
-  \r
-\r
-#define OB_WRP_Pages0to15           ((uint32_t)0x00000001) /* Write protection of Sector0 */\r
-#define OB_WRP_Pages16to31          ((uint32_t)0x00000002) /* Write protection of Sector1 */\r
-#define OB_WRP_Pages32to47          ((uint32_t)0x00000004) /* Write protection of Sector2 */\r
-#define OB_WRP_Pages48to63          ((uint32_t)0x00000008) /* Write protection of Sector3 */\r
-#define OB_WRP_Pages64to79          ((uint32_t)0x00000010) /* Write protection of Sector4 */\r
-#define OB_WRP_Pages80to95          ((uint32_t)0x00000020) /* Write protection of Sector5 */\r
-#define OB_WRP_Pages96to111         ((uint32_t)0x00000040) /* Write protection of Sector6 */\r
-#define OB_WRP_Pages112to127        ((uint32_t)0x00000080) /* Write protection of Sector7 */\r
-#define OB_WRP_Pages128to143        ((uint32_t)0x00000100) /* Write protection of Sector8 */\r
-#define OB_WRP_Pages144to159        ((uint32_t)0x00000200) /* Write protection of Sector9 */\r
-#define OB_WRP_Pages160to175        ((uint32_t)0x00000400) /* Write protection of Sector10 */\r
-#define OB_WRP_Pages176to191        ((uint32_t)0x00000800) /* Write protection of Sector11 */\r
-#define OB_WRP_Pages192to207        ((uint32_t)0x00001000) /* Write protection of Sector12 */\r
-#define OB_WRP_Pages208to223        ((uint32_t)0x00002000) /* Write protection of Sector13 */\r
-#define OB_WRP_Pages224to239        ((uint32_t)0x00004000) /* Write protection of Sector14 */\r
-#define OB_WRP_Pages240to255        ((uint32_t)0x00008000) /* Write protection of Sector15 */\r
-#define OB_WRP_Pages256to271        ((uint32_t)0x00010000) /* Write protection of Sector16 */\r
-#define OB_WRP_Pages272to287        ((uint32_t)0x00020000) /* Write protection of Sector17 */\r
-#define OB_WRP_Pages288to303        ((uint32_t)0x00040000) /* Write protection of Sector18 */\r
-#define OB_WRP_Pages304to319        ((uint32_t)0x00080000) /* Write protection of Sector19 */\r
-#define OB_WRP_Pages320to335        ((uint32_t)0x00100000) /* Write protection of Sector20 */\r
-#define OB_WRP_Pages336to351        ((uint32_t)0x00200000) /* Write protection of Sector21 */\r
-#define OB_WRP_Pages352to367        ((uint32_t)0x00400000) /* Write protection of Sector22 */\r
-#define OB_WRP_Pages368to383        ((uint32_t)0x00800000) /* Write protection of Sector23 */\r
-#define OB_WRP_Pages384to399        ((uint32_t)0x01000000) /* Write protection of Sector24 */\r
-#define OB_WRP_Pages400to415        ((uint32_t)0x02000000) /* Write protection of Sector25 */\r
-#define OB_WRP_Pages416to431        ((uint32_t)0x04000000) /* Write protection of Sector26 */\r
-#define OB_WRP_Pages432to447        ((uint32_t)0x08000000) /* Write protection of Sector27 */\r
-#define OB_WRP_Pages448to463        ((uint32_t)0x10000000) /* Write protection of Sector28 */\r
-#define OB_WRP_Pages464to479        ((uint32_t)0x20000000) /* Write protection of Sector29 */\r
-#define OB_WRP_Pages480to495        ((uint32_t)0x40000000) /* Write protection of Sector30 */\r
-#define OB_WRP_Pages496to511        ((uint32_t)0x80000000) /* Write protection of Sector31 */\r
-\r
-#define OB_WRP_AllPages       ((uint32_t)0xFFFFFFFF) /*!< Write protection of all Sectors */\r
-\r
-#define IS_OB_WRP(PAGE) (((PAGE) != 0x0000000))\r
-\r
-/**\r
-  * @}\r
-  */\r
-\r
-/** @defgroup Option_Bytes_Read_Protection \r
-  * @{\r
-  */ \r
-\r
-/** \r
-  * @brief  Read Protection Level  \r
-  */ \r
-#define OB_RDP_Level_0   ((uint8_t)0xAA)\r
-#define OB_RDP_Level_1   ((uint8_t)0xBB)\r
-/*#define OB_RDP_Level_2   ((uint8_t)0xCC)*/ /* Warning: When enabling read protection level 2 \r
-                                                it's no more possible to go back to level 1 or 0 */\r
-\r
-#define IS_OB_RDP(LEVEL) (((LEVEL) == OB_RDP_Level_0)||\\r
-                          ((LEVEL) == OB_RDP_Level_1))/*||\\r
-                          ((LEVEL) == OB_RDP_Level_2))*/\r
-/**\r
-  * @}\r
-  */ \r
-\r
-/** @defgroup Option_Bytes_IWatchdog \r
-  * @{\r
-  */\r
-\r
-#define OB_IWDG_SW                     ((uint8_t)0x10)  /*!< Software WDG selected */\r
-#define OB_IWDG_HW                     ((uint8_t)0x00)  /*!< Hardware WDG selected */\r
-#define IS_OB_IWDG_SOURCE(SOURCE) (((SOURCE) == OB_IWDG_SW) || ((SOURCE) == OB_IWDG_HW))\r
-\r
-/**\r
-  * @}\r
-  */\r
-\r
-/** @defgroup Option_Bytes_nRST_STOP \r
-  * @{\r
-  */\r
-\r
-#define OB_STOP_NoRST                  ((uint8_t)0x20) /*!< No reset generated when entering in STOP */\r
-#define OB_STOP_RST                    ((uint8_t)0x00) /*!< Reset generated when entering in STOP */\r
-#define IS_OB_STOP_SOURCE(SOURCE) (((SOURCE) == OB_STOP_NoRST) || ((SOURCE) == OB_STOP_RST))\r
-\r
-/**\r
-  * @}\r
-  */\r
-\r
-/** @defgroup Option_Bytes_nRST_STDBY \r
-  * @{\r
-  */\r
-\r
-#define OB_STDBY_NoRST                 ((uint8_t)0x40) /*!< No reset generated when entering in STANDBY */\r
-#define OB_STDBY_RST                   ((uint8_t)0x00) /*!< Reset generated when entering in STANDBY */\r
-#define IS_OB_STDBY_SOURCE(SOURCE) (((SOURCE) == OB_STDBY_NoRST) || ((SOURCE) == OB_STDBY_RST))\r
-\r
-/**\r
-  * @}\r
-  */\r
-\r
-/** @defgroup Option_Bytes_BOR_Level \r
-  * @{\r
-  */\r
-\r
-#define OB_BOR_OFF       ((uint8_t)0x00) /*!< BOR is disabled at power down, the reset is asserted when the VDD \r
-                                              power supply reaches the PDR(Power Down Reset) threshold (1.5V) */\r
-#define OB_BOR_LEVEL1    ((uint8_t)0x08) /*!< BOR Reset threshold levels for 1.7V - 1.8V VDD power supply    */\r
-#define OB_BOR_LEVEL2    ((uint8_t)0x09) /*!< BOR Reset threshold levels for 1.9V - 2.0V VDD power supply    */\r
-#define OB_BOR_LEVEL3    ((uint8_t)0x0A) /*!< BOR Reset threshold levels for 2.3V - 2.4V VDD power supply    */\r
-#define OB_BOR_LEVEL4    ((uint8_t)0x0B) /*!< BOR Reset threshold levels for 2.55V - 2.65V VDD power supply  */\r
-#define OB_BOR_LEVEL5    ((uint8_t)0x0C) /*!< BOR Reset threshold levels for 2.8V - 2.9V VDD power supply    */\r
-\r
-#define IS_OB_BOR_LEVEL(LEVEL)  (((LEVEL) == OB_BOR_OFF) || \\r
-                                 ((LEVEL) == OB_BOR_LEVEL1) || \\r
-                                 ((LEVEL) == OB_BOR_LEVEL2) || \\r
-                                 ((LEVEL) == OB_BOR_LEVEL3) || \\r
-                                 ((LEVEL) == OB_BOR_LEVEL4) || \\r
-                                 ((LEVEL) == OB_BOR_LEVEL5))\r
-\r
-/**\r
-  * @}\r
-  */\r
-  \r
-/** @defgroup FLASH_Flags \r
-  * @{\r
-  */ \r
-\r
-#define FLASH_FLAG_BSY                 FLASH_SR_BSY  /*!< FLASH Busy flag */\r
-#define FLASH_FLAG_EOP                 FLASH_SR_EOP  /*!< FLASH End of Programming flag */\r
-#define FLASH_FLAG_ENDHV               FLASH_SR_ENHV  /*!< FLASH End of High Voltage flag */\r
-#define FLASH_FLAG_READY               FLASH_SR_READY  /*!< FLASH Ready flag after low power mode */\r
-#define FLASH_FLAG_WRPERR              FLASH_SR_WRPERR  /*!< FLASH Write protected error flag */\r
-#define FLASH_FLAG_PGAERR              FLASH_SR_PGAERR  /*!< FLASH Programming Alignment error flag */\r
-#define FLASH_FLAG_SIZERR              FLASH_SR_SIZERR  /*!< FLASH Size error flag  */\r
-#define FLASH_FLAG_OPTVERR             FLASH_SR_OPTVERR  /*!< FLASH Option Validity error flag  */\r
\r
-#define IS_FLASH_CLEAR_FLAG(FLAG) ((((FLAG) & (uint32_t)0xFFFFF0FD) == 0x00000000) && ((FLAG) != 0x00000000))\r
-\r
-#define IS_FLASH_GET_FLAG(FLAG)  (((FLAG) == FLASH_FLAG_BSY) || ((FLAG) == FLASH_FLAG_EOP) || \\r
-                                  ((FLAG) == FLASH_FLAG_ENDHV) || ((FLAG) == FLASH_FLAG_READY ) || \\r
-                                  ((FLAG) ==  FLASH_FLAG_WRPERR) || ((FLAG) == FLASH_FLAG_PGAERR ) || \\r
-                                  ((FLAG) ==  FLASH_FLAG_SIZERR) || ((FLAG) == FLASH_FLAG_OPTVERR))\r
-/**\r
-  * @}\r
-  */ \r
-\r
-/** @defgroup FLASH_Keys \r
-  * @{\r
-  */ \r
-\r
-#define FLASH_PDKEY1               ((uint32_t)0x04152637) /*!< Flash power down key1 */\r
-#define FLASH_PDKEY2               ((uint32_t)0xFAFBFCFD) /*!< Flash power down key2: used with FLASH_PDKEY1 \r
-                                                              to unlock the RUN_PD bit in FLASH_ACR */\r
-\r
-#define FLASH_PEKEY1               ((uint32_t)0x89ABCDEF) /*!< Flash program erase key1 */\r
-#define FLASH_PEKEY2               ((uint32_t)0x02030405) /*!< Flash program erase key: used with FLASH_PEKEY2\r
-                                                               to unlock the write access to the FLASH_PECR register and\r
-                                                               data EEPROM */\r
-\r
-#define FLASH_PRGKEY1              ((uint32_t)0x8C9DAEBF) /*!< Flash program memory key1 */\r
-#define FLASH_PRGKEY2              ((uint32_t)0x13141516) /*!< Flash program memory key2: used with FLASH_PRGKEY2\r
-                                                               to unlock the program memory */\r
-\r
-#define FLASH_OPTKEY1              ((uint32_t)0xFBEAD9C8) /*!< Flash option key1 */\r
-#define FLASH_OPTKEY2              ((uint32_t)0x24252627) /*!< Flash option key2: used with FLASH_OPTKEY1 to\r
-                                                              unlock the write access to the option byte block */\r
-/**\r
-  * @}\r
-  */\r
-  \r
-/** @defgroup Timeout_definition \r
-  * @{\r
-  */ \r
-#define FLASH_ER_PRG_TIMEOUT         ((uint32_t)0x8000)\r
-\r
-/**\r
-  * @}\r
-  */ \r
-\r
-/**\r
-  * @}\r
-  */ \r
-\r
-/* Exported macro ------------------------------------------------------------*/\r
-/* Exported functions ------------------------------------------------------- */\r
-  \r
-/** \r
-  * @brief  FLASH memory functions that can be executed from FLASH.  \r
-  */  \r
-/* FLASH Interface configuration functions ************************************/  \r
-void FLASH_SetLatency(uint32_t FLASH_Latency);\r
-void FLASH_PrefetchBufferCmd(FunctionalState NewState);\r
-void FLASH_ReadAccess64Cmd(FunctionalState NewState);\r
-void FLASH_SLEEPPowerDownCmd(FunctionalState NewState);\r
-\r
-/* FLASH Memory Programming functions *****************************************/   \r
-void FLASH_Unlock(void);\r
-void FLASH_Lock(void);\r
-FLASH_Status FLASH_ErasePage(uint32_t Page_Address);\r
-FLASH_Status FLASH_FastProgramWord(uint32_t Address, uint32_t Data);\r
-\r
-/* DATA EEPROM Programming functions ******************************************/  \r
-void DATA_EEPROM_Unlock(void);\r
-void DATA_EEPROM_Lock(void);\r
-void DATA_EEPROM_FixedTimeProgramCmd(FunctionalState NewState);\r
-FLASH_Status DATA_EEPROM_EraseWord(uint32_t Address);\r
-FLASH_Status DATA_EEPROM_FastProgramByte(uint32_t Address, uint8_t Data);\r
-FLASH_Status DATA_EEPROM_FastProgramHalfWord(uint32_t Address, uint16_t Data);\r
-FLASH_Status DATA_EEPROM_FastProgramWord(uint32_t Address, uint32_t Data);\r
-FLASH_Status DATA_EEPROM_ProgramByte(uint32_t Address, uint8_t Data);\r
-FLASH_Status DATA_EEPROM_ProgramHalfWord(uint32_t Address, uint16_t Data);\r
-FLASH_Status DATA_EEPROM_ProgramWord(uint32_t Address, uint32_t Data);\r
-\r
-/* Option Bytes Programming functions *****************************************/\r
-void FLASH_OB_Unlock(void);\r
-void FLASH_OB_Lock(void);\r
-void FLASH_OB_Launch(void);\r
-FLASH_Status FLASH_OB_WRPConfig(uint32_t OB_WRP, FunctionalState NewState);\r
-FLASH_Status FLASH_OB_RDPConfig(uint8_t OB_RDP);\r
-FLASH_Status FLASH_OB_UserConfig(uint8_t OB_IWDG, uint8_t OB_STOP, uint8_t OB_STDBY);\r
-FLASH_Status FLASH_OB_BORConfig(uint8_t OB_BOR);\r
-uint8_t FLASH_OB_GetUser(void);\r
-uint32_t FLASH_OB_GetWRP(void);\r
-FlagStatus FLASH_OB_GetRDP(void);\r
-uint8_t FLASH_OB_GetBOR(void);\r
-\r
-/* Interrupts and flags management functions **********************************/  \r
-void FLASH_ITConfig(uint32_t FLASH_IT, FunctionalState NewState);\r
-FlagStatus FLASH_GetFlagStatus(uint32_t FLASH_FLAG);\r
-void FLASH_ClearFlag(uint32_t FLASH_FLAG);\r
-FLASH_Status FLASH_GetStatus(void);\r
-FLASH_Status FLASH_WaitForLastOperation(uint32_t Timeout);\r
-\r
-/** \r
-  * @brief  FLASH memory functions that should be executed from internal SRAM.\r
-  *         These functions are defined inside the "stm32l1xx_flash_ramfunc.c"\r
-  *         file.\r
-  */ \r
-FLASH_Status FLASH_RUNPowerDownCmd(FunctionalState NewState);\r
-FLASH_Status FLASH_ProgramHalfPage(uint32_t Address, uint32_t* pBuffer);\r
-FLASH_Status DATA_EEPROM_EraseDoubleWord(uint32_t Address);\r
-FLASH_Status DATA_EEPROM_ProgramDoubleWord(uint32_t Address, uint64_t Data);\r
-  \r
-#ifdef __cplusplus\r
-}\r
-#endif\r
-\r
-#endif /* __STM32L1xx_FLASH_H */\r
-\r
-/**\r
-  * @}\r
-  */\r
-\r
-/**\r
-  * @}\r
-  */ \r
-\r
-/******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE****/\r