123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389 |
- /**
- ******************************************************************************
- * @file ft32f0xx_flash.h
- * @author FMD AE
- * @brief This file contains all the functions prototypes for the FLASH
- * firmware library.
- * @version V1.0.0
- * @data 2021-07-01
- ******************************************************************************
- */
- /* Define to prevent recursive inclusion -------------------------------------*/
- #ifndef __FT32F0XX_FLASH_H
- #define __FT32F0XX_FLASH_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- /* Includes ------------------------------------------------------------------*/
- #include "ft32f0xx.h"
- /** @addtogroup FLASH
- * @{
- */
- /* Exported types ------------------------------------------------------------*/
- /**
- * @brief FLASH Status
- */
- typedef enum
- {
- FLASH_BUSY = 1,
- FLASH_ERROR_WRP,
- FLASH_ERROR_PROGRAM,
- FLASH_COMPLETE,
- FLASH_TIMEOUT
- }FLASH_Status;
- /* Exported constants --------------------------------------------------------*/
- /** @defgroup FLASH_Exported_Constants
- * @{
- */
- /** @defgroup FLASH_Latency
- * @{
- */
- #define FLASH_Latency_0 ((uint32_t)0x00000000) /*!< FLASH Zero Latency cycle */
- #define FLASH_Latency_1 ((uint32_t)0x00000001) /*!< FLASH One Latency cycle */
- #define FLASH_Latency_2 ((uint32_t)0x00000002)
- #define FLASH_Latency_3 ((uint32_t)0x00000003)
- #define FLASH_Latency_4 ((uint32_t)0x00000004)
- #define FLASH_Latency_5 ((uint32_t)0x00000005)
- #define FLASH_Latency_6 ((uint32_t)0x00000006)
- #define FLASH_Latency_7 ((uint32_t)0x00000007)
- #define FLASH_Latency_8 ((uint32_t)0x00000008)
- #define FLASH_Latency_9 ((uint32_t)0x00000009)
- #define FLASH_Latency_10 ((uint32_t)0x0000000a)
- #define FLASH_Latency_11 ((uint32_t)0x0000000b)
- #define FLASH_Latency_12 ((uint32_t)0x0000000c)
- #define FLASH_Latency_13 ((uint32_t)0x0000000d)
- #define FLASH_Latency_14 ((uint32_t)0x0000000e)
- #define FLASH_Latency_15 ((uint32_t)0x0000000f)
- #define IS_FLASH_LATENCY(LATENCY) (((LATENCY) == FLASH_Latency_0) || \
- ((LATENCY) == FLASH_Latency_1) || \
- ((LATENCY) == FLASH_Latency_2 ) || \
- ((LATENCY) == FLASH_Latency_3 ) || \
- ((LATENCY) == FLASH_Latency_4 ) || \
- ((LATENCY) == FLASH_Latency_5 ) || \
- ((LATENCY) == FLASH_Latency_6 ) || \
- ((LATENCY) == FLASH_Latency_7 ) || \
- ((LATENCY) == FLASH_Latency_8 ) || \
- ((LATENCY) == FLASH_Latency_9 ) || \
- ((LATENCY) == FLASH_Latency_10) || \
- ((LATENCY) == FLASH_Latency_11) || \
- ((LATENCY) == FLASH_Latency_12) || \
- ((LATENCY) == FLASH_Latency_13) || \
- ((LATENCY) == FLASH_Latency_14) || \
- ((LATENCY) == FLASH_Latency_15))
- /**
- * @}
- */
- /** @defgroup FLASH_Interrupts
- * @{
- */
- #define FLASH_IT_EOP FLASH_CR_EOPIE /*!< End of programming interrupt source */
- #define FLASH_IT_ERR FLASH_CR_ERRIE /*!< Error interrupt source */
- #define IS_FLASH_IT(IT) ((((IT) & (uint32_t)0xFFFFEBFF) == 0x00000000) && (((IT) != 0x00000000)))
- /**
- * @}
- */
- /** @defgroup FLASH_Address
- * @{
- */
- #if defined(FT32F030X8) /*64K devices */
- #define IS_FLASH_PROGRAM_ADDRESS(ADDRESS) (((ADDRESS) >= 0x08000000) && ((ADDRESS) <= 0x0800FFFF))
- #elif defined (FT32F072xB) /*128K devices */
- #define IS_FLASH_PROGRAM_ADDRESS(ADDRESS) (((ADDRESS) >= 0x08000000) && ((ADDRESS) <= 0x0801FFFF))
- #endif
- /**
- * @}
- */
- /** @defgroup FLASH_OB_DATA_ADDRESS
- * @{
- */
- #define IS_OB_DATA_ADDRESS(ADDRESS) (((ADDRESS) == 0x1FFFF804))
- /**
- * @}
- */
- /** @defgroup FLASH_Option_Bytes_Write_Protection
- * @{
- */
- #define OB_WRP_Pages0to7 ((uint32_t)0x00000001) /* Write protection of page 0 to 7 */
- #define OB_WRP_Pages8to15 ((uint32_t)0x00000002) /* Write protection of page 8 to 15 */
- #define OB_WRP_Pages16to23 ((uint32_t)0x00000004) /* Write protection of page 16 to 23 */
- #define OB_WRP_Pages24to31 ((uint32_t)0x00000008) /* Write protection of page 24 to 31 */
- #define OB_WRP_Pages32to39 ((uint32_t)0x00000010) /* Write protection of page 32 to 39 */
- #define OB_WRP_Pages40to47 ((uint32_t)0x00000020) /* Write protection of page 40 to 47 */
- #define OB_WRP_Pages48to55 ((uint32_t)0x00000040) /* Write protection of page 48 to 55 */
- #define OB_WRP_Pages56to63 ((uint32_t)0x00000080) /* Write protection of page 56 to 63 */
- #define OB_WRP_Pages64to71 ((uint32_t)0x00000100) /* Write protection of page 64 to 71 */
- #define OB_WRP_Pages72to79 ((uint32_t)0x00000200) /* Write protection of page 72 to 79 */
- #define OB_WRP_Pages80to87 ((uint32_t)0x00000400) /* Write protection of page 80 to 87 */
- #define OB_WRP_Pages88to95 ((uint32_t)0x00000800) /* Write protection of page 88 to 95 */
- #define OB_WRP_Pages96to103 ((uint32_t)0x00001000) /* Write protection of page 96 to 103 */
- #define OB_WRP_Pages104to111 ((uint32_t)0x00002000) /* Write protection of page 104 to 111 */
- #define OB_WRP_Pages112to119 ((uint32_t)0x00004000) /* Write protection of page 112 to 119 */
- #define OB_WRP_Pages120to127 ((uint32_t)0x00008000) /* Write protection of page 120 to 127 */
- #define OB_WRP_AllPages ((uint32_t)0x0000FFFF) /*!< Write protection of all Sectors */
- #define IS_OB_WRP(PAGE) (((PAGE) != 0x0000000))
- /**
- * @}
- */
- /** @defgroup FLASH_Option_Bytes_Read_Protection
- * @{
- */
- /**
- * @brief FLASH_Read Protection Level
- */
- #define OB_RDP_Level_0 ((uint8_t)0xAA)
- #define OB_RDP_Level_1 ((uint8_t)0xBB)
- /*#define OB_RDP_Level_2 ((uint8_t)0xCC)*/ /* Warning: When enabling read protection level 2
- it's no more possible to go back to level 1 or 0 */
- #define IS_OB_RDP(LEVEL) (((LEVEL) == OB_RDP_Level_0)||\
- ((LEVEL) == OB_RDP_Level_1))/*||\
- ((LEVEL) == OB_RDP_Level_2))*/
- /**
- * @}
- */
- /** @defgroup FLASH_Option_Bytes_IWatchdog
- * @{
- */
- #if defined (FT32F072xB)
- #define OB_IWDG_SW ((uint8_t)0x01) /*!< Software IWDG selected */
- #define OB_IWDG_HW ((uint8_t)0x00) /*!< Hardware IWDG selected */
- #else
- #define OB_IWDG_SW ((uint8_t)0x00) /*!< Software IWDG selected */
- #define OB_IWDG_HW ((uint8_t)0x01) /*!< Hardware IWDG selected */
- #endif
- #define IS_OB_IWDG_SOURCE(SOURCE) (((SOURCE) == OB_IWDG_SW) || ((SOURCE) == OB_IWDG_HW))
- /**
- * @}
- */
- /** @defgroup FLASH_Option_Bytes_nRST_STOP
- * @{
- */
- #define OB_STOP_NoRST ((uint8_t)0x02) /*!< No reset generated when entering in STOP */
- #define OB_STOP_RST ((uint8_t)0x00) /*!< Reset generated when entering in STOP */
- #define IS_OB_STOP_SOURCE(SOURCE) (((SOURCE) == OB_STOP_NoRST) || ((SOURCE) == OB_STOP_RST))
- /**
- * @}
- */
- /** @defgroup FLASH_Option_Bytes_nRST_STDBY
- * @{
- */
- #define OB_STDBY_NoRST ((uint8_t)0x04) /*!< No reset generated when entering in STANDBY */
- #define OB_STDBY_RST ((uint8_t)0x00) /*!< Reset generated when entering in STANDBY */
- #define IS_OB_STDBY_SOURCE(SOURCE) (((SOURCE) == OB_STDBY_NoRST) || ((SOURCE) == OB_STDBY_RST))
- /**
- * @}
- */
- /** @defgroup FLASH_Option_Bytes_BOOT1
- * @{
- */
- #define OB_BOOT1_RESET ((uint8_t)0x00) /*!< BOOT1 Reset */
- #define OB_BOOT1_SET ((uint8_t)0x10) /*!< BOOT1 Set */
- #define IS_OB_BOOT1(BOOT1) (((BOOT1) == OB_BOOT1_RESET) || ((BOOT1) == OB_BOOT1_SET))
- /**
- * @}
- */
- /**
- * @}
- */
- /**
- * @}
- */
- /** @defgroup FLASH_Option_Bytes_VDDA_Analog_Monitoring
- * @{
- */
- #define OB_VDDA_ANALOG_ON ((uint8_t)0x20) /*!< Analog monitoring on VDDA Power source ON */
- #define OB_VDDA_ANALOG_OFF ((uint8_t)0x00) /*!< Analog monitoring on VDDA Power source OFF */
- #define IS_OB_VDDA_ANALOG(ANALOG) (((ANALOG) == OB_VDDA_ANALOG_ON) || ((ANALOG) == OB_VDDA_ANALOG_OFF))
- /**
- * @}
- */
- /** @defgroup FLASH_Option_Bytes_SRAM_Parity_Enable
- * @{
- */
- #define OB_SRAM_PARITY_SET ((uint8_t)0x00) /*!< SRAM parity enable Set */
- #define OB_SRAM_PARITY_RESET ((uint8_t)0x40) /*!< SRAM parity enable reset */
- #define IS_OB_SRAM_PARITY(PARITY) (((PARITY) == OB_SRAM_PARITY_SET) || ((PARITY) == OB_SRAM_PARITY_RESET))
- /**
- * @}
- */
- /** @defgroup FLASH_Flags
- * @{
- */
- #define FLASH_FLAG_BSY FLASH_SR_BSY /*!< FLASH Busy flag */
- #define FLASH_FLAG_PGERR FLASH_SR_PGERR /*!< FLASH Programming error flag */
- #define FLASH_FLAG_WRPERR FLASH_SR_WRPERR /*!< FLASH Write protected error flag */
- #define FLASH_FLAG_EOP FLASH_SR_EOP /*!< FLASH End of Programming flag */
- #define IS_FLASH_CLEAR_FLAG(FLAG) ((((FLAG) & (uint32_t)0xFFFFFFCB) == 0x00000000) && ((FLAG) != 0x00000000))
- #define IS_FLASH_GET_FLAG(FLAG) (((FLAG) == FLASH_FLAG_BSY) || ((FLAG) == FLASH_FLAG_PGERR) || \
- ((FLAG) == FLASH_FLAG_WRPERR) || ((FLAG) == FLASH_FLAG_EOP))
- /**
- * @}
- */
- /** @defgroup FLASH_Timeout_definition
- * @{
- */
- #define FLASH_ER_PRG_TIMEOUT ((uint32_t)0x000B0000)
- /**
- * @}
- */
- /** @defgroup FLASH_Legacy
- * @{
- */
- #define FLASH_WRProt_Pages0to7 OB_WRP_Pages0to7
- #define FLASH_WRProt_Pages8to15 OB_WRP_Pages8to15
- #define FLASH_WRProt_Pages16to23 OB_WRP_Pages16to23
- #define FLASH_WRProt_Pages24to31 OB_WRP_Pages24to31
- #define FLASH_WRProt_Pages32to39 OB_WRP_Pages32to39
- #define FLASH_WRProt_Pages40to47 OB_WRP_Pages40to47
- #define FLASH_WRProt_Pages48to55 OB_WRP_Pages48to55
- #define FLASH_WRProt_Pages56to63 OB_WRP_Pages56to63
- #define FLASH_WRProt_Pages64to71 OB_WRP_Pages64to71
- #define FLASH_WRProt_Pages72to79 OB_WRP_Pages72to79
- #define FLASH_WRProt_Pages80to87 OB_WRP_Pages80to87
- #define FLASH_WRProt_Pages88to95 OB_WRP_Pages88to95
- #define FLASH_WRProt_Pages96to103 OB_WRP_Pages96to103
- #define FLASH_WRProt_Pages104to111 OB_WRP_Pages104to111
- #define FLASH_WRProt_Pages112to119 OB_WRP_Pages112to119
- #define FLASH_WRProt_Pages120to127 OB_WRP_Pages120to127
- #define FLASH_WRProt_AllPages OB_WRP_AllPages
- /**
- * @}
- */
- /**
- * @}
- */
- /* Exported macro ------------------------------------------------------------*/
- /* Exported functions ------------------------------------------------------- */
- /**
- * @brief FLASH memory functions that can be executed from FLASH.
- */
- /* FLASH Interface configuration functions ************************************/
- void FLASH_SetLatency(uint32_t FLASH_Latency);
- void FLASH_PrefetchBufferCmd(FunctionalState NewState);
- FlagStatus FLASH_GetPrefetchBufferStatus(void);
- /* FLASH Memory Programming functions *****************************************/
- void FLASH_Unlock(void);
- void FLASH_Lock(void);
- FLASH_Status FLASH_ErasePage(uint32_t Page_Address);
- FLASH_Status FLASH_EraseAllPages(void);
- FLASH_Status FLASH_ProgramWord(uint32_t Address, uint32_t Data);
- #if defined(FT32F072xB)
- FLASH_Status FLASH_ProgramHalfWord(uint32_t Address, uint16_t Data);
- #endif
- /* FLASH Option Bytes Programming functions *****************************************/
- void FLASH_OB_Unlock(void);
- void FLASH_OB_Lock(void);
- void FLASH_OB_Launch(void);
- FLASH_Status FLASH_OB_Erase(void);
- FLASH_Status FLASH_OB_EnableWRP(uint32_t OB_WRP);
- FLASH_Status FLASH_OB_RDPConfig(uint8_t OB_RDP);
- FLASH_Status FLASH_OB_UserConfig(uint8_t OB_IWDG, uint8_t OB_STOP, uint8_t OB_STDBY);
- FLASH_Status FLASH_OB_BOOTConfig(uint8_t OB_BOOT1);
- FLASH_Status FLASH_OB_VDDAConfig(uint8_t OB_VDDA_ANALOG);
- FLASH_Status FLASH_OB_SRAMParityConfig(uint8_t OB_SRAM_Parity);
- FLASH_Status FLASH_OB_WriteUser(uint8_t OB_USER);
- #if defined(FT32F072xB)
- FLASH_Status FLASH_OB_ProgramData(uint32_t Address, uint8_t Data);
- #else
- FLASH_Status FLASH_OB_ProgramData(uint32_t Address, uint32_t Data);
- #endif
- uint8_t FLASH_OB_GetUser(void);
- uint32_t FLASH_OB_GetWRP(void);
- FlagStatus FLASH_OB_GetRDP(void);
- /* FLASH Interrupts and flags management functions **********************************/
- void FLASH_ITConfig(uint32_t FLASH_IT, FunctionalState NewState);
- FlagStatus FLASH_GetFlagStatus(uint32_t FLASH_FLAG);
- void FLASH_ClearFlag(uint32_t FLASH_FLAG);
- FLASH_Status FLASH_GetStatus(void);
- FLASH_Status FLASH_WaitForLastOperation(uint32_t Timeout);
- /** @defgroup FLASH_Legacy
- * @{
- */
- #define FLASH_EraseOptionBytes FLASH_OB_Erase
- #define FLASH_EnableWriteProtection FLASH_OB_EnableWRP
- #define FLASH_UserOptionByteConfig FLASH_OB_UserConfig
- #define FLASH_ProgramOption4ByteData FLASH_OB_ProgramData
- #define FLASH_GetUserOptionByte FLASH_OB_GetUser
- #define FLASH_GetWriteProtectionOptionByte FLASH_OB_GetWRP
- /**
- * @}
- */
- #ifdef __cplusplus
- }
- #endif
- #endif /* __FT32F0XX_FLASH_H */
- /**
- * @}
- */
- /**
- * @}
- */
- /************************ (C) COPYRIGHT FMD *****END OF FILE****/
|