stm32f0xx_hal_flash.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. /**
  2. ******************************************************************************
  3. * @file stm32f0xx_hal_flash.h
  4. * @author MCD Application Team
  5. * @brief Header file of Flash HAL module.
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * Copyright (c) 2016 STMicroelectronics.
  10. * All rights reserved.
  11. *
  12. * This software is licensed under terms that can be found in the LICENSE file in
  13. * the root directory of this software component.
  14. * If no LICENSE file comes with this software, it is provided AS-IS.
  15. ******************************************************************************
  16. */
  17. /* Define to prevent recursive inclusion -------------------------------------*/
  18. #ifndef __STM32F0xx_HAL_FLASH_H
  19. #define __STM32F0xx_HAL_FLASH_H
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. /* Includes ------------------------------------------------------------------*/
  24. #include "stm32f0xx_hal_def.h"
  25. /** @addtogroup STM32F0xx_HAL_Driver
  26. * @{
  27. */
  28. /** @addtogroup FLASH
  29. * @{
  30. */
  31. /** @addtogroup FLASH_Private_Constants
  32. * @{
  33. */
  34. #define FLASH_TIMEOUT_VALUE (50000U) /* 50 s */
  35. /**
  36. * @}
  37. */
  38. /** @addtogroup FLASH_Private_Macros
  39. * @{
  40. */
  41. #define IS_FLASH_TYPEPROGRAM(VALUE) (((VALUE) == FLASH_TYPEPROGRAM_HALFWORD) || \
  42. ((VALUE) == FLASH_TYPEPROGRAM_WORD) || \
  43. ((VALUE) == FLASH_TYPEPROGRAM_DOUBLEWORD))
  44. #define IS_FLASH_LATENCY(__LATENCY__) (((__LATENCY__) == FLASH_LATENCY_0) || \
  45. ((__LATENCY__) == FLASH_LATENCY_1))
  46. /**
  47. * @}
  48. */
  49. /* Exported types ------------------------------------------------------------*/
  50. /** @defgroup FLASH_Exported_Types FLASH Exported Types
  51. * @{
  52. */
  53. /**
  54. * @brief FLASH Procedure structure definition
  55. */
  56. typedef enum
  57. {
  58. FLASH_PROC_NONE = 0U,
  59. FLASH_PROC_PAGEERASE = 1U,
  60. FLASH_PROC_MASSERASE = 2U,
  61. FLASH_PROC_PROGRAMHALFWORD = 3U,
  62. FLASH_PROC_PROGRAMWORD = 4U,
  63. FLASH_PROC_PROGRAMDOUBLEWORD = 5U
  64. } FLASH_ProcedureTypeDef;
  65. /**
  66. * @brief FLASH handle Structure definition
  67. */
  68. typedef struct
  69. {
  70. __IO FLASH_ProcedureTypeDef ProcedureOnGoing; /*!< Internal variable to indicate which procedure is ongoing or not in IT context */
  71. __IO uint32_t DataRemaining; /*!< Internal variable to save the remaining pages to erase or half-word to program in IT context */
  72. __IO uint32_t Address; /*!< Internal variable to save address selected for program or erase */
  73. __IO uint64_t Data; /*!< Internal variable to save data to be programmed */
  74. HAL_LockTypeDef Lock; /*!< FLASH locking object */
  75. __IO uint32_t ErrorCode; /*!< FLASH error code
  76. This parameter can be a value of @ref FLASH_Error_Codes */
  77. } FLASH_ProcessTypeDef;
  78. /**
  79. * @}
  80. */
  81. /* Exported constants --------------------------------------------------------*/
  82. /** @defgroup FLASH_Exported_Constants FLASH Exported Constants
  83. * @{
  84. */
  85. /** @defgroup FLASH_Error_Codes FLASH Error Codes
  86. * @{
  87. */
  88. #define HAL_FLASH_ERROR_NONE 0x00U /*!< No error */
  89. #define HAL_FLASH_ERROR_PROG 0x01U /*!< Programming error */
  90. #define HAL_FLASH_ERROR_WRP 0x02U /*!< Write protection error */
  91. /**
  92. * @}
  93. */
  94. /** @defgroup FLASH_Type_Program FLASH Type Program
  95. * @{
  96. */
  97. #define FLASH_TYPEPROGRAM_HALFWORD (0x01U) /*!<Program a half-word (16-bit) at a specified address.*/
  98. #define FLASH_TYPEPROGRAM_WORD (0x02U) /*!<Program a word (32-bit) at a specified address.*/
  99. #define FLASH_TYPEPROGRAM_DOUBLEWORD (0x03U) /*!<Program a double word (64-bit) at a specified address*/
  100. /**
  101. * @}
  102. */
  103. /** @defgroup FLASH_Latency FLASH Latency
  104. * @{
  105. */
  106. #define FLASH_LATENCY_0 (0x00000000U) /*!< FLASH Zero Latency cycle */
  107. #define FLASH_LATENCY_1 FLASH_ACR_LATENCY /*!< FLASH One Latency cycle */
  108. /**
  109. * @}
  110. */
  111. /** @defgroup FLASH_Flag_definition FLASH Flag definition
  112. * @{
  113. */
  114. #define FLASH_FLAG_BSY FLASH_SR_BSY /*!< FLASH Busy flag */
  115. #define FLASH_FLAG_PGERR FLASH_SR_PGERR /*!< FLASH Programming error flag */
  116. #define FLASH_FLAG_WRPERR FLASH_SR_WRPERR /*!< FLASH Write protected error flag */
  117. #define FLASH_FLAG_EOP FLASH_SR_EOP /*!< FLASH End of Operation flag */
  118. /**
  119. * @}
  120. */
  121. /** @defgroup FLASH_Interrupt_definition FLASH Interrupt definition
  122. * @{
  123. */
  124. #define FLASH_IT_EOP FLASH_CR_EOPIE /*!< End of FLASH Operation Interrupt source */
  125. #define FLASH_IT_ERR FLASH_CR_ERRIE /*!< Error Interrupt source */
  126. /**
  127. * @}
  128. */
  129. /**
  130. * @}
  131. */
  132. /* Exported macro ------------------------------------------------------------*/
  133. /** @defgroup FLASH_Exported_Macros FLASH Exported Macros
  134. * @brief macros to control FLASH features
  135. * @{
  136. */
  137. /** @defgroup FLASH_EM_Latency FLASH Latency
  138. * @brief macros to handle FLASH Latency
  139. * @{
  140. */
  141. /**
  142. * @brief Set the FLASH Latency.
  143. * @param __LATENCY__ FLASH Latency
  144. * The value of this parameter depend on device used within the same series
  145. * @retval None
  146. */
  147. #define __HAL_FLASH_SET_LATENCY(__LATENCY__) (FLASH->ACR = (FLASH->ACR&(~FLASH_ACR_LATENCY)) | (__LATENCY__))
  148. /**
  149. * @brief Get the FLASH Latency.
  150. * @retval FLASH Latency
  151. * The value of this parameter depend on device used within the same series
  152. */
  153. #define __HAL_FLASH_GET_LATENCY() (READ_BIT((FLASH->ACR), FLASH_ACR_LATENCY))
  154. /**
  155. * @}
  156. */
  157. /** @defgroup FLASH_Prefetch FLASH Prefetch
  158. * @brief macros to handle FLASH Prefetch buffer
  159. * @{
  160. */
  161. /**
  162. * @brief Enable the FLASH prefetch buffer.
  163. * @retval None
  164. */
  165. #define __HAL_FLASH_PREFETCH_BUFFER_ENABLE() (FLASH->ACR |= FLASH_ACR_PRFTBE)
  166. /**
  167. * @brief Disable the FLASH prefetch buffer.
  168. * @retval None
  169. */
  170. #define __HAL_FLASH_PREFETCH_BUFFER_DISABLE() (FLASH->ACR &= (~FLASH_ACR_PRFTBE))
  171. /**
  172. * @}
  173. */
  174. /** @defgroup FLASH_Interrupt FLASH Interrupts
  175. * @brief macros to handle FLASH interrupts
  176. * @{
  177. */
  178. /**
  179. * @brief Enable the specified FLASH interrupt.
  180. * @param __INTERRUPT__ FLASH interrupt
  181. * This parameter can be any combination of the following values:
  182. * @arg @ref FLASH_IT_EOP End of FLASH Operation Interrupt
  183. * @arg @ref FLASH_IT_ERR Error Interrupt
  184. * @retval none
  185. */
  186. #define __HAL_FLASH_ENABLE_IT(__INTERRUPT__) SET_BIT((FLASH->CR), (__INTERRUPT__))
  187. /**
  188. * @brief Disable the specified FLASH interrupt.
  189. * @param __INTERRUPT__ FLASH interrupt
  190. * This parameter can be any combination of the following values:
  191. * @arg @ref FLASH_IT_EOP End of FLASH Operation Interrupt
  192. * @arg @ref FLASH_IT_ERR Error Interrupt
  193. * @retval none
  194. */
  195. #define __HAL_FLASH_DISABLE_IT(__INTERRUPT__) CLEAR_BIT((FLASH->CR), (uint32_t)(__INTERRUPT__))
  196. /**
  197. * @brief Get the specified FLASH flag status.
  198. * @param __FLAG__ specifies the FLASH flag to check.
  199. * This parameter can be one of the following values:
  200. * @arg @ref FLASH_FLAG_BSY FLASH Busy flag
  201. * @arg @ref FLASH_FLAG_EOP FLASH End of Operation flag
  202. * @arg @ref FLASH_FLAG_WRPERR FLASH Write protected error flag
  203. * @arg @ref FLASH_FLAG_PGERR FLASH Programming error flag
  204. * @retval The new state of __FLAG__ (SET or RESET).
  205. */
  206. #define __HAL_FLASH_GET_FLAG(__FLAG__) (((FLASH->SR) & (__FLAG__)) == (__FLAG__))
  207. /**
  208. * @brief Clear the specified FLASH flag.
  209. * @param __FLAG__ specifies the FLASH flags to clear.
  210. * This parameter can be any combination of the following values:
  211. * @arg @ref FLASH_FLAG_EOP FLASH End of Operation flag
  212. * @arg @ref FLASH_FLAG_WRPERR FLASH Write protected error flag
  213. * @arg @ref FLASH_FLAG_PGERR FLASH Programming error flag
  214. * @retval none
  215. */
  216. #define __HAL_FLASH_CLEAR_FLAG(__FLAG__) ((FLASH->SR) = (__FLAG__))
  217. /**
  218. * @}
  219. */
  220. /**
  221. * @}
  222. */
  223. /* Include FLASH HAL Extended module */
  224. #include "stm32f0xx_hal_flash_ex.h"
  225. /* Exported functions --------------------------------------------------------*/
  226. /** @addtogroup FLASH_Exported_Functions
  227. * @{
  228. */
  229. /** @addtogroup FLASH_Exported_Functions_Group1
  230. * @{
  231. */
  232. /* IO operation functions *****************************************************/
  233. HAL_StatusTypeDef HAL_FLASH_Program(uint32_t TypeProgram, uint32_t Address, uint64_t Data);
  234. HAL_StatusTypeDef HAL_FLASH_Program_IT(uint32_t TypeProgram, uint32_t Address, uint64_t Data);
  235. /* FLASH IRQ handler function */
  236. void HAL_FLASH_IRQHandler(void);
  237. /* Callbacks in non blocking modes */
  238. void HAL_FLASH_EndOfOperationCallback(uint32_t ReturnValue);
  239. void HAL_FLASH_OperationErrorCallback(uint32_t ReturnValue);
  240. /**
  241. * @}
  242. */
  243. /** @addtogroup FLASH_Exported_Functions_Group2
  244. * @{
  245. */
  246. /* Peripheral Control functions ***********************************************/
  247. HAL_StatusTypeDef HAL_FLASH_Unlock(void);
  248. HAL_StatusTypeDef HAL_FLASH_Lock(void);
  249. HAL_StatusTypeDef HAL_FLASH_OB_Unlock(void);
  250. HAL_StatusTypeDef HAL_FLASH_OB_Lock(void);
  251. HAL_StatusTypeDef HAL_FLASH_OB_Launch(void);
  252. /**
  253. * @}
  254. */
  255. /** @addtogroup FLASH_Exported_Functions_Group3
  256. * @{
  257. */
  258. /* Peripheral State and Error functions ***************************************/
  259. uint32_t HAL_FLASH_GetError(void);
  260. /**
  261. * @}
  262. */
  263. /**
  264. * @}
  265. */
  266. /* Private function -------------------------------------------------*/
  267. /** @addtogroup FLASH_Private_Functions
  268. * @{
  269. */
  270. HAL_StatusTypeDef FLASH_WaitForLastOperation(uint32_t Timeout);
  271. /**
  272. * @}
  273. */
  274. /**
  275. * @}
  276. */
  277. /**
  278. * @}
  279. */
  280. #ifdef __cplusplus
  281. }
  282. #endif
  283. #endif /* __STM32F0xx_HAL_FLASH_H */