]> jspc29.x-matter.uni-frankfurt.de Git - mvd_firmware.git/blob
f46d4e873b3c0d3c42ce1f4cc8d405ff58ee0b12
[mvd_firmware.git] /
1 /**\r
2   ******************************************************************************\r
3   * @file    stm32f10x_flash.h\r
4   * @author  MCD Application Team\r
5   * @version V3.5.0\r
6   * @date    11-March-2011\r
7   * @brief   This file contains all the functions prototypes for the FLASH \r
8   *          firmware library.\r
9   ******************************************************************************\r
10   * @attention\r
11   *\r
12   * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS\r
13   * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE\r
14   * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY\r
15   * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING\r
16   * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE\r
17   * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.\r
18   *\r
19   * <h2><center>&copy; COPYRIGHT 2011 STMicroelectronics</center></h2>\r
20   ******************************************************************************\r
21   */\r
22 \r
23 /* Define to prevent recursive inclusion -------------------------------------*/\r
24 #ifndef __STM32F10x_FLASH_H\r
25 #define __STM32F10x_FLASH_H\r
26 \r
27 #ifdef __cplusplus\r
28  extern "C" {\r
29 #endif\r
30 \r
31 /* Includes ------------------------------------------------------------------*/\r
32 #include "stm32f10x.h"\r
33 \r
34 /** @addtogroup STM32F10x_StdPeriph_Driver\r
35   * @{\r
36   */\r
37 \r
38 /** @addtogroup FLASH\r
39   * @{\r
40   */\r
41 \r
42 /** @defgroup FLASH_Exported_Types\r
43   * @{\r
44   */\r
45 \r
46 /** \r
47   * @brief  FLASH Status  \r
48   */\r
49 \r
50 typedef enum\r
51\r
52   FLASH_BUSY = 1,\r
53   FLASH_ERROR_PG,\r
54   FLASH_ERROR_WRP,\r
55   FLASH_COMPLETE,\r
56   FLASH_TIMEOUT\r
57 }FLASH_Status;\r
58 \r
59 /**\r
60   * @}\r
61   */\r
62 \r
63 /** @defgroup FLASH_Exported_Constants\r
64   * @{\r
65   */\r
66 \r
67 /** @defgroup Flash_Latency \r
68   * @{\r
69   */\r
70 \r
71 #define FLASH_Latency_0                ((uint32_t)0x00000000)  /*!< FLASH Zero Latency cycle */\r
72 #define FLASH_Latency_1                ((uint32_t)0x00000001)  /*!< FLASH One Latency cycle */\r
73 #define FLASH_Latency_2                ((uint32_t)0x00000002)  /*!< FLASH Two Latency cycles */\r
74 #define IS_FLASH_LATENCY(LATENCY) (((LATENCY) == FLASH_Latency_0) || \\r
75                                    ((LATENCY) == FLASH_Latency_1) || \\r
76                                    ((LATENCY) == FLASH_Latency_2))\r
77 /**\r
78   * @}\r
79   */\r
80 \r
81 /** @defgroup Half_Cycle_Enable_Disable \r
82   * @{\r
83   */\r
84 \r
85 #define FLASH_HalfCycleAccess_Enable   ((uint32_t)0x00000008)  /*!< FLASH Half Cycle Enable */\r
86 #define FLASH_HalfCycleAccess_Disable  ((uint32_t)0x00000000)  /*!< FLASH Half Cycle Disable */\r
87 #define IS_FLASH_HALFCYCLEACCESS_STATE(STATE) (((STATE) == FLASH_HalfCycleAccess_Enable) || \\r
88                                                ((STATE) == FLASH_HalfCycleAccess_Disable)) \r
89 /**\r
90   * @}\r
91   */\r
92 \r
93 /** @defgroup Prefetch_Buffer_Enable_Disable \r
94   * @{\r
95   */\r
96 \r
97 #define FLASH_PrefetchBuffer_Enable    ((uint32_t)0x00000010)  /*!< FLASH Prefetch Buffer Enable */\r
98 #define FLASH_PrefetchBuffer_Disable   ((uint32_t)0x00000000)  /*!< FLASH Prefetch Buffer Disable */\r
99 #define IS_FLASH_PREFETCHBUFFER_STATE(STATE) (((STATE) == FLASH_PrefetchBuffer_Enable) || \\r
100                                               ((STATE) == FLASH_PrefetchBuffer_Disable)) \r
101 /**\r
102   * @}\r
103   */\r
104 \r
105 /** @defgroup Option_Bytes_Write_Protection \r
106   * @{\r
107   */\r
108 \r
109 /* Values to be used with STM32 Low and Medium density devices */\r
110 #define FLASH_WRProt_Pages0to3         ((uint32_t)0x00000001) /*!< STM32 Low and Medium density devices: Write protection of page 0 to 3 */\r
111 #define FLASH_WRProt_Pages4to7         ((uint32_t)0x00000002) /*!< STM32 Low and Medium density devices: Write protection of page 4 to 7 */\r
112 #define FLASH_WRProt_Pages8to11        ((uint32_t)0x00000004) /*!< STM32 Low and Medium density devices: Write protection of page 8 to 11 */\r
113 #define FLASH_WRProt_Pages12to15       ((uint32_t)0x00000008) /*!< STM32 Low and Medium density devices: Write protection of page 12 to 15 */\r
114 #define FLASH_WRProt_Pages16to19       ((uint32_t)0x00000010) /*!< STM32 Low and Medium density devices: Write protection of page 16 to 19 */\r
115 #define FLASH_WRProt_Pages20to23       ((uint32_t)0x00000020) /*!< STM32 Low and Medium density devices: Write protection of page 20 to 23 */\r
116 #define FLASH_WRProt_Pages24to27       ((uint32_t)0x00000040) /*!< STM32 Low and Medium density devices: Write protection of page 24 to 27 */\r
117 #define FLASH_WRProt_Pages28to31       ((uint32_t)0x00000080) /*!< STM32 Low and Medium density devices: Write protection of page 28 to 31 */\r
118 \r
119 /* Values to be used with STM32 Medium-density devices */\r
120 #define FLASH_WRProt_Pages32to35       ((uint32_t)0x00000100) /*!< STM32 Medium-density devices: Write protection of page 32 to 35 */\r
121 #define FLASH_WRProt_Pages36to39       ((uint32_t)0x00000200) /*!< STM32 Medium-density devices: Write protection of page 36 to 39 */\r
122 #define FLASH_WRProt_Pages40to43       ((uint32_t)0x00000400) /*!< STM32 Medium-density devices: Write protection of page 40 to 43 */\r
123 #define FLASH_WRProt_Pages44to47       ((uint32_t)0x00000800) /*!< STM32 Medium-density devices: Write protection of page 44 to 47 */\r
124 #define FLASH_WRProt_Pages48to51       ((uint32_t)0x00001000) /*!< STM32 Medium-density devices: Write protection of page 48 to 51 */\r
125 #define FLASH_WRProt_Pages52to55       ((uint32_t)0x00002000) /*!< STM32 Medium-density devices: Write protection of page 52 to 55 */\r
126 #define FLASH_WRProt_Pages56to59       ((uint32_t)0x00004000) /*!< STM32 Medium-density devices: Write protection of page 56 to 59 */\r
127 #define FLASH_WRProt_Pages60to63       ((uint32_t)0x00008000) /*!< STM32 Medium-density devices: Write protection of page 60 to 63 */\r
128 #define FLASH_WRProt_Pages64to67       ((uint32_t)0x00010000) /*!< STM32 Medium-density devices: Write protection of page 64 to 67 */\r
129 #define FLASH_WRProt_Pages68to71       ((uint32_t)0x00020000) /*!< STM32 Medium-density devices: Write protection of page 68 to 71 */\r
130 #define FLASH_WRProt_Pages72to75       ((uint32_t)0x00040000) /*!< STM32 Medium-density devices: Write protection of page 72 to 75 */\r
131 #define FLASH_WRProt_Pages76to79       ((uint32_t)0x00080000) /*!< STM32 Medium-density devices: Write protection of page 76 to 79 */\r
132 #define FLASH_WRProt_Pages80to83       ((uint32_t)0x00100000) /*!< STM32 Medium-density devices: Write protection of page 80 to 83 */\r
133 #define FLASH_WRProt_Pages84to87       ((uint32_t)0x00200000) /*!< STM32 Medium-density devices: Write protection of page 84 to 87 */\r
134 #define FLASH_WRProt_Pages88to91       ((uint32_t)0x00400000) /*!< STM32 Medium-density devices: Write protection of page 88 to 91 */\r
135 #define FLASH_WRProt_Pages92to95       ((uint32_t)0x00800000) /*!< STM32 Medium-density devices: Write protection of page 92 to 95 */\r
136 #define FLASH_WRProt_Pages96to99       ((uint32_t)0x01000000) /*!< STM32 Medium-density devices: Write protection of page 96 to 99 */\r
137 #define FLASH_WRProt_Pages100to103     ((uint32_t)0x02000000) /*!< STM32 Medium-density devices: Write protection of page 100 to 103 */\r
138 #define FLASH_WRProt_Pages104to107     ((uint32_t)0x04000000) /*!< STM32 Medium-density devices: Write protection of page 104 to 107 */\r
139 #define FLASH_WRProt_Pages108to111     ((uint32_t)0x08000000) /*!< STM32 Medium-density devices: Write protection of page 108 to 111 */\r
140 #define FLASH_WRProt_Pages112to115     ((uint32_t)0x10000000) /*!< STM32 Medium-density devices: Write protection of page 112 to 115 */\r
141 #define FLASH_WRProt_Pages116to119     ((uint32_t)0x20000000) /*!< STM32 Medium-density devices: Write protection of page 115 to 119 */\r
142 #define FLASH_WRProt_Pages120to123     ((uint32_t)0x40000000) /*!< STM32 Medium-density devices: Write protection of page 120 to 123 */\r
143 #define FLASH_WRProt_Pages124to127     ((uint32_t)0x80000000) /*!< STM32 Medium-density devices: Write protection of page 124 to 127 */\r
144 \r
145 /* Values to be used with STM32 High-density and STM32F10X Connectivity line devices */\r
146 #define FLASH_WRProt_Pages0to1         ((uint32_t)0x00000001) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
147                                                                    Write protection of page 0 to 1 */\r
148 #define FLASH_WRProt_Pages2to3         ((uint32_t)0x00000002) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
149                                                                    Write protection of page 2 to 3 */\r
150 #define FLASH_WRProt_Pages4to5         ((uint32_t)0x00000004) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
151                                                                    Write protection of page 4 to 5 */\r
152 #define FLASH_WRProt_Pages6to7         ((uint32_t)0x00000008) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
153                                                                    Write protection of page 6 to 7 */\r
154 #define FLASH_WRProt_Pages8to9         ((uint32_t)0x00000010) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
155                                                                    Write protection of page 8 to 9 */\r
156 #define FLASH_WRProt_Pages10to11       ((uint32_t)0x00000020) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
157                                                                    Write protection of page 10 to 11 */\r
158 #define FLASH_WRProt_Pages12to13       ((uint32_t)0x00000040) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
159                                                                    Write protection of page 12 to 13 */\r
160 #define FLASH_WRProt_Pages14to15       ((uint32_t)0x00000080) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
161                                                                    Write protection of page 14 to 15 */\r
162 #define FLASH_WRProt_Pages16to17       ((uint32_t)0x00000100) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
163                                                                    Write protection of page 16 to 17 */\r
164 #define FLASH_WRProt_Pages18to19       ((uint32_t)0x00000200) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
165                                                                    Write protection of page 18 to 19 */\r
166 #define FLASH_WRProt_Pages20to21       ((uint32_t)0x00000400) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
167                                                                    Write protection of page 20 to 21 */\r
168 #define FLASH_WRProt_Pages22to23       ((uint32_t)0x00000800) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
169                                                                    Write protection of page 22 to 23 */\r
170 #define FLASH_WRProt_Pages24to25       ((uint32_t)0x00001000) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
171                                                                    Write protection of page 24 to 25 */\r
172 #define FLASH_WRProt_Pages26to27       ((uint32_t)0x00002000) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
173                                                                    Write protection of page 26 to 27 */\r
174 #define FLASH_WRProt_Pages28to29       ((uint32_t)0x00004000) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
175                                                                    Write protection of page 28 to 29 */\r
176 #define FLASH_WRProt_Pages30to31       ((uint32_t)0x00008000) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
177                                                                    Write protection of page 30 to 31 */\r
178 #define FLASH_WRProt_Pages32to33       ((uint32_t)0x00010000) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
179                                                                    Write protection of page 32 to 33 */\r
180 #define FLASH_WRProt_Pages34to35       ((uint32_t)0x00020000) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
181                                                                    Write protection of page 34 to 35 */\r
182 #define FLASH_WRProt_Pages36to37       ((uint32_t)0x00040000) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
183                                                                    Write protection of page 36 to 37 */\r
184 #define FLASH_WRProt_Pages38to39       ((uint32_t)0x00080000) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
185                                                                    Write protection of page 38 to 39 */\r
186 #define FLASH_WRProt_Pages40to41       ((uint32_t)0x00100000) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
187                                                                    Write protection of page 40 to 41 */\r
188 #define FLASH_WRProt_Pages42to43       ((uint32_t)0x00200000) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
189                                                                    Write protection of page 42 to 43 */\r
190 #define FLASH_WRProt_Pages44to45       ((uint32_t)0x00400000) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
191                                                                    Write protection of page 44 to 45 */\r
192 #define FLASH_WRProt_Pages46to47       ((uint32_t)0x00800000) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
193                                                                    Write protection of page 46 to 47 */\r
194 #define FLASH_WRProt_Pages48to49       ((uint32_t)0x01000000) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
195                                                                    Write protection of page 48 to 49 */\r
196 #define FLASH_WRProt_Pages50to51       ((uint32_t)0x02000000) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
197                                                                    Write protection of page 50 to 51 */\r
198 #define FLASH_WRProt_Pages52to53       ((uint32_t)0x04000000) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
199                                                                    Write protection of page 52 to 53 */\r
200 #define FLASH_WRProt_Pages54to55       ((uint32_t)0x08000000) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
201                                                                    Write protection of page 54 to 55 */\r
202 #define FLASH_WRProt_Pages56to57       ((uint32_t)0x10000000) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
203                                                                    Write protection of page 56 to 57 */\r
204 #define FLASH_WRProt_Pages58to59       ((uint32_t)0x20000000) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
205                                                                    Write protection of page 58 to 59 */\r
206 #define FLASH_WRProt_Pages60to61       ((uint32_t)0x40000000) /*!< STM32 High-density, XL-density and Connectivity line devices:\r
207                                                                    Write protection of page 60 to 61 */\r
208 #define FLASH_WRProt_Pages62to127      ((uint32_t)0x80000000) /*!< STM32 Connectivity line devices: Write protection of page 62 to 127 */\r
209 #define FLASH_WRProt_Pages62to255      ((uint32_t)0x80000000) /*!< STM32 Medium-density devices: Write protection of page 62 to 255 */\r
210 #define FLASH_WRProt_Pages62to511      ((uint32_t)0x80000000) /*!< STM32 XL-density devices: Write protection of page 62 to 511 */\r
211 \r
212 #define FLASH_WRProt_AllPages          ((uint32_t)0xFFFFFFFF) /*!< Write protection of all Pages */\r
213 \r
214 #define IS_FLASH_WRPROT_PAGE(PAGE) (((PAGE) != 0x00000000))\r
215 \r
216 #define IS_FLASH_ADDRESS(ADDRESS) (((ADDRESS) >= 0x08000000) && ((ADDRESS) < 0x080FFFFF))\r
217 \r
218 #define IS_OB_DATA_ADDRESS(ADDRESS) (((ADDRESS) == 0x1FFFF804) || ((ADDRESS) == 0x1FFFF806))\r
219 \r
220 /**\r
221   * @}\r
222   */\r
223 \r
224 /** @defgroup Option_Bytes_IWatchdog \r
225   * @{\r
226   */\r
227 \r
228 #define OB_IWDG_SW                     ((uint16_t)0x0001)  /*!< Software IWDG selected */\r
229 #define OB_IWDG_HW                     ((uint16_t)0x0000)  /*!< Hardware IWDG selected */\r
230 #define IS_OB_IWDG_SOURCE(SOURCE) (((SOURCE) == OB_IWDG_SW) || ((SOURCE) == OB_IWDG_HW))\r
231 \r
232 /**\r
233   * @}\r
234   */\r
235 \r
236 /** @defgroup Option_Bytes_nRST_STOP \r
237   * @{\r
238   */\r
239 \r
240 #define OB_STOP_NoRST                  ((uint16_t)0x0002) /*!< No reset generated when entering in STOP */\r
241 #define OB_STOP_RST                    ((uint16_t)0x0000) /*!< Reset generated when entering in STOP */\r
242 #define IS_OB_STOP_SOURCE(SOURCE) (((SOURCE) == OB_STOP_NoRST) || ((SOURCE) == OB_STOP_RST))\r
243 \r
244 /**\r
245   * @}\r
246   */\r
247 \r
248 /** @defgroup Option_Bytes_nRST_STDBY \r
249   * @{\r
250   */\r
251 \r
252 #define OB_STDBY_NoRST                 ((uint16_t)0x0004) /*!< No reset generated when entering in STANDBY */\r
253 #define OB_STDBY_RST                   ((uint16_t)0x0000) /*!< Reset generated when entering in STANDBY */\r
254 #define IS_OB_STDBY_SOURCE(SOURCE) (((SOURCE) == OB_STDBY_NoRST) || ((SOURCE) == OB_STDBY_RST))\r
255 \r
256 #ifdef STM32F10X_XL\r
257 /**\r
258   * @}\r
259   */\r
260 /** @defgroup FLASH_Boot\r
261   * @{\r
262   */\r
263 #define FLASH_BOOT_Bank1  ((uint16_t)0x0000) /*!< At startup, if boot pins are set in boot from user Flash position\r
264                                                   and this parameter is selected the device will boot from Bank1(Default) */\r
265 #define FLASH_BOOT_Bank2  ((uint16_t)0x0001) /*!< At startup, if boot pins are set in boot from user Flash position\r
266                                                   and this parameter is selected the device will boot from Bank 2 or Bank 1,\r
267                                                   depending on the activation of the bank */\r
268 #define IS_FLASH_BOOT(BOOT) (((BOOT) == FLASH_BOOT_Bank1) || ((BOOT) == FLASH_BOOT_Bank2))\r
269 #endif\r
270 /**\r
271   * @}\r
272   */\r
273 /** @defgroup FLASH_Interrupts \r
274   * @{\r
275   */\r
276 #ifdef STM32F10X_XL\r
277 #define FLASH_IT_BANK2_ERROR                 ((uint32_t)0x80000400)  /*!< FPEC BANK2 error interrupt source */\r
278 #define FLASH_IT_BANK2_EOP                   ((uint32_t)0x80001000)  /*!< End of FLASH BANK2 Operation Interrupt source */\r
279 \r
280 #define FLASH_IT_BANK1_ERROR                 FLASH_IT_ERROR          /*!< FPEC BANK1 error interrupt source */\r
281 #define FLASH_IT_BANK1_EOP                   FLASH_IT_EOP            /*!< End of FLASH BANK1 Operation Interrupt source */\r
282 \r
283 #define FLASH_IT_ERROR                 ((uint32_t)0x00000400)  /*!< FPEC BANK1 error interrupt source */\r
284 #define FLASH_IT_EOP                   ((uint32_t)0x00001000)  /*!< End of FLASH BANK1 Operation Interrupt source */\r
285 #define IS_FLASH_IT(IT) ((((IT) & (uint32_t)0x7FFFEBFF) == 0x00000000) && (((IT) != 0x00000000)))\r
286 #else\r
287 #define FLASH_IT_ERROR                 ((uint32_t)0x00000400)  /*!< FPEC error interrupt source */\r
288 #define FLASH_IT_EOP                   ((uint32_t)0x00001000)  /*!< End of FLASH Operation Interrupt source */\r
289 #define FLASH_IT_BANK1_ERROR           FLASH_IT_ERROR          /*!< FPEC BANK1 error interrupt source */\r
290 #define FLASH_IT_BANK1_EOP             FLASH_IT_EOP            /*!< End of FLASH BANK1 Operation Interrupt source */\r
291 \r
292 #define IS_FLASH_IT(IT) ((((IT) & (uint32_t)0xFFFFEBFF) == 0x00000000) && (((IT) != 0x00000000)))\r
293 #endif\r
294 \r
295 /**\r
296   * @}\r
297   */\r
298 \r
299 /** @defgroup FLASH_Flags \r
300   * @{\r
301   */\r
302 #ifdef STM32F10X_XL\r
303 #define FLASH_FLAG_BANK2_BSY                 ((uint32_t)0x80000001)  /*!< FLASH BANK2 Busy flag */\r
304 #define FLASH_FLAG_BANK2_EOP                 ((uint32_t)0x80000020)  /*!< FLASH BANK2 End of Operation flag */\r
305 #define FLASH_FLAG_BANK2_PGERR               ((uint32_t)0x80000004)  /*!< FLASH BANK2 Program error flag */\r
306 #define FLASH_FLAG_BANK2_WRPRTERR            ((uint32_t)0x80000010)  /*!< FLASH BANK2 Write protected error flag */\r
307 \r
308 #define FLASH_FLAG_BANK1_BSY                 FLASH_FLAG_BSY       /*!< FLASH BANK1 Busy flag*/\r
309 #define FLASH_FLAG_BANK1_EOP                 FLASH_FLAG_EOP       /*!< FLASH BANK1 End of Operation flag */\r
310 #define FLASH_FLAG_BANK1_PGERR               FLASH_FLAG_PGERR     /*!< FLASH BANK1 Program error flag */\r
311 #define FLASH_FLAG_BANK1_WRPRTERR            FLASH_FLAG_WRPRTERR  /*!< FLASH BANK1 Write protected error flag */\r
312 \r
313 #define FLASH_FLAG_BSY                 ((uint32_t)0x00000001)  /*!< FLASH Busy flag */\r
314 #define FLASH_FLAG_EOP                 ((uint32_t)0x00000020)  /*!< FLASH End of Operation flag */\r
315 #define FLASH_FLAG_PGERR               ((uint32_t)0x00000004)  /*!< FLASH Program error flag */\r
316 #define FLASH_FLAG_WRPRTERR            ((uint32_t)0x00000010)  /*!< FLASH Write protected error flag */\r
317 #define FLASH_FLAG_OPTERR              ((uint32_t)0x00000001)  /*!< FLASH Option Byte error flag */\r
318  \r
319 #define IS_FLASH_CLEAR_FLAG(FLAG) ((((FLAG) & (uint32_t)0x7FFFFFCA) == 0x00000000) && ((FLAG) != 0x00000000))\r
320 #define IS_FLASH_GET_FLAG(FLAG)  (((FLAG) == FLASH_FLAG_BSY) || ((FLAG) == FLASH_FLAG_EOP) || \\r
321                                   ((FLAG) == FLASH_FLAG_PGERR) || ((FLAG) == FLASH_FLAG_WRPRTERR) || \\r
322                                   ((FLAG) == FLASH_FLAG_OPTERR)|| \\r
323                                   ((FLAG) == FLASH_FLAG_BANK1_BSY) || ((FLAG) == FLASH_FLAG_BANK1_EOP) || \\r
324                                   ((FLAG) == FLASH_FLAG_BANK1_PGERR) || ((FLAG) == FLASH_FLAG_BANK1_WRPRTERR) || \\r
325                                   ((FLAG) == FLASH_FLAG_BANK2_BSY) || ((FLAG) == FLASH_FLAG_BANK2_EOP) || \\r
326                                   ((FLAG) == FLASH_FLAG_BANK2_PGERR) || ((FLAG) == FLASH_FLAG_BANK2_WRPRTERR))\r
327 #else\r
328 #define FLASH_FLAG_BSY                 ((uint32_t)0x00000001)  /*!< FLASH Busy flag */\r
329 #define FLASH_FLAG_EOP                 ((uint32_t)0x00000020)  /*!< FLASH End of Operation flag */\r
330 #define FLASH_FLAG_PGERR               ((uint32_t)0x00000004)  /*!< FLASH Program error flag */\r
331 #define FLASH_FLAG_WRPRTERR            ((uint32_t)0x00000010)  /*!< FLASH Write protected error flag */\r
332 #define FLASH_FLAG_OPTERR              ((uint32_t)0x00000001)  /*!< FLASH Option Byte error flag */\r
333 \r
334 #define FLASH_FLAG_BANK1_BSY                 FLASH_FLAG_BSY       /*!< FLASH BANK1 Busy flag*/\r
335 #define FLASH_FLAG_BANK1_EOP                 FLASH_FLAG_EOP       /*!< FLASH BANK1 End of Operation flag */\r
336 #define FLASH_FLAG_BANK1_PGERR               FLASH_FLAG_PGERR     /*!< FLASH BANK1 Program error flag */\r
337 #define FLASH_FLAG_BANK1_WRPRTERR            FLASH_FLAG_WRPRTERR  /*!< FLASH BANK1 Write protected error flag */\r
338  \r
339 #define IS_FLASH_CLEAR_FLAG(FLAG) ((((FLAG) & (uint32_t)0xFFFFFFCA) == 0x00000000) && ((FLAG) != 0x00000000))\r
340 #define IS_FLASH_GET_FLAG(FLAG)  (((FLAG) == FLASH_FLAG_BSY) || ((FLAG) == FLASH_FLAG_EOP) || \\r
341                                   ((FLAG) == FLASH_FLAG_PGERR) || ((FLAG) == FLASH_FLAG_WRPRTERR) || \\r
342                                                                   ((FLAG) == FLASH_FLAG_BANK1_BSY) || ((FLAG) == FLASH_FLAG_BANK1_EOP) || \\r
343                                   ((FLAG) == FLASH_FLAG_BANK1_PGERR) || ((FLAG) == FLASH_FLAG_BANK1_WRPRTERR) || \\r
344                                   ((FLAG) == FLASH_FLAG_OPTERR))\r
345 #endif\r
346 \r
347 /**\r
348   * @}\r
349   */\r
350 \r
351 /**\r
352   * @}\r
353   */\r
354 \r
355 /** @defgroup FLASH_Exported_Macros\r
356   * @{\r
357   */\r
358 \r
359 /**\r
360   * @}\r
361   */\r
362 \r
363 /** @defgroup FLASH_Exported_Functions\r
364   * @{\r
365   */\r
366 \r
367 /*------------ Functions used for all STM32F10x devices -----*/\r
368 void FLASH_SetLatency(uint32_t FLASH_Latency);\r
369 void FLASH_HalfCycleAccessCmd(uint32_t FLASH_HalfCycleAccess);\r
370 void FLASH_PrefetchBufferCmd(uint32_t FLASH_PrefetchBuffer);\r
371 void FLASH_Unlock(void);\r
372 void FLASH_Lock(void);\r
373 FLASH_Status FLASH_ErasePage(uint32_t Page_Address);\r
374 FLASH_Status FLASH_EraseAllPages(void);\r
375 FLASH_Status FLASH_EraseOptionBytes(void);\r
376 FLASH_Status FLASH_ProgramWord(uint32_t Address, uint32_t Data);\r
377 FLASH_Status FLASH_ProgramHalfWord(uint32_t Address, uint16_t Data);\r
378 FLASH_Status FLASH_ProgramOptionByteData(uint32_t Address, uint8_t Data);\r
379 FLASH_Status FLASH_EnableWriteProtection(uint32_t FLASH_Pages);\r
380 FLASH_Status FLASH_ReadOutProtection(FunctionalState NewState);\r
381 FLASH_Status FLASH_UserOptionByteConfig(uint16_t OB_IWDG, uint16_t OB_STOP, uint16_t OB_STDBY);\r
382 uint32_t FLASH_GetUserOptionByte(void);\r
383 uint32_t FLASH_GetWriteProtectionOptionByte(void);\r
384 FlagStatus FLASH_GetReadOutProtectionStatus(void);\r
385 FlagStatus FLASH_GetPrefetchBufferStatus(void);\r
386 void FLASH_ITConfig(uint32_t FLASH_IT, FunctionalState NewState);\r
387 FlagStatus FLASH_GetFlagStatus(uint32_t FLASH_FLAG);\r
388 void FLASH_ClearFlag(uint32_t FLASH_FLAG);\r
389 FLASH_Status FLASH_GetStatus(void);\r
390 FLASH_Status FLASH_WaitForLastOperation(uint32_t Timeout);\r
391 \r
392 /*------------ New function used for all STM32F10x devices -----*/\r
393 void FLASH_UnlockBank1(void);\r
394 void FLASH_LockBank1(void);\r
395 FLASH_Status FLASH_EraseAllBank1Pages(void);\r
396 FLASH_Status FLASH_GetBank1Status(void);\r
397 FLASH_Status FLASH_WaitForLastBank1Operation(uint32_t Timeout);\r
398 \r
399 #ifdef STM32F10X_XL\r
400 /*---- New Functions used only with STM32F10x_XL density devices -----*/\r
401 void FLASH_UnlockBank2(void);\r
402 void FLASH_LockBank2(void);\r
403 FLASH_Status FLASH_EraseAllBank2Pages(void);\r
404 FLASH_Status FLASH_GetBank2Status(void);\r
405 FLASH_Status FLASH_WaitForLastBank2Operation(uint32_t Timeout);\r
406 FLASH_Status FLASH_BootConfig(uint16_t FLASH_BOOT);\r
407 #endif\r
408 \r
409 #ifdef __cplusplus\r
410 }\r
411 #endif\r
412 \r
413 #endif /* __STM32F10x_FLASH_H */\r
414 /**\r
415   * @}\r
416   */\r
417 \r
418 /**\r
419   * @}\r
420   */\r
421 \r
422 /**\r
423   * @}\r
424   */\r
425 \r
426 /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/\r