stm32f3xx_hal_flash.h 11 KB

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