Move telemetry displayport init and cms device registering
[betaflight.git] / lib / main / STM32F4 / Drivers / STM32F4xx_StdPeriph_Driver / inc / stm32f4xx_fsmc.h
blobecd80c57545138a88de3f2f4ec5b7757f40c1194
1 /**
2 ******************************************************************************
3 * @file stm32f4xx_fsmc.h
4 * @author MCD Application Team
5 * @version V1.7.1
6 * @date 20-May-2016
7 * @brief This file contains all the functions prototypes for the FSMC firmware
8 * library.
9 ******************************************************************************
10 * @attention
12 * <h2><center>&copy; COPYRIGHT 2016 STMicroelectronics</center></h2>
14 * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
15 * You may not use this file except in compliance with the License.
16 * You may obtain a copy of the License at:
18 * http://www.st.com/software_license_agreement_liberty_v2
20 * Unless required by applicable law or agreed to in writing, software
21 * distributed under the License is distributed on an "AS IS" BASIS,
22 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
23 * See the License for the specific language governing permissions and
24 * limitations under the License.
26 ******************************************************************************
29 /* Define to prevent recursive inclusion -------------------------------------*/
30 #ifndef __STM32F4xx_FSMC_H
31 #define __STM32F4xx_FSMC_H
33 #ifdef __cplusplus
34 extern "C" {
35 #endif
37 /* Includes ------------------------------------------------------------------*/
38 #include "stm32f4xx.h"
40 /** @addtogroup STM32F4xx_StdPeriph_Driver
41 * @{
44 /** @addtogroup FSMC
45 * @{
48 /* Exported types ------------------------------------------------------------*/
50 /**
51 * @brief Timing parameters For NOR/SRAM Banks
53 typedef struct
55 uint32_t FSMC_AddressSetupTime; /*!< Defines the number of HCLK cycles to configure
56 the duration of the address setup time.
57 This parameter can be a value between 0 and 0xF.
58 @note This parameter is not used with synchronous NOR Flash memories. */
60 uint32_t FSMC_AddressHoldTime; /*!< Defines the number of HCLK cycles to configure
61 the duration of the address hold time.
62 This parameter can be a value between 0 and 0xF.
63 @note This parameter is not used with synchronous NOR Flash memories.*/
65 uint32_t FSMC_DataSetupTime; /*!< Defines the number of HCLK cycles to configure
66 the duration of the data setup time.
67 This parameter can be a value between 0 and 0xFF.
68 @note This parameter is used for SRAMs, ROMs and asynchronous multiplexed NOR Flash memories. */
70 uint32_t FSMC_BusTurnAroundDuration; /*!< Defines the number of HCLK cycles to configure
71 the duration of the bus turnaround.
72 This parameter can be a value between 0 and 0xF.
73 @note This parameter is only used for multiplexed NOR Flash memories. */
75 uint32_t FSMC_CLKDivision; /*!< Defines the period of CLK clock output signal, expressed in number of HCLK cycles.
76 This parameter can be a value between 1 and 0xF.
77 @note This parameter is not used for asynchronous NOR Flash, SRAM or ROM accesses. */
79 uint32_t FSMC_DataLatency; /*!< Defines the number of memory clock cycles to issue
80 to the memory before getting the first data.
81 The parameter value depends on the memory type as shown below:
82 - It must be set to 0 in case of a CRAM
83 - It is don't care in asynchronous NOR, SRAM or ROM accesses
84 - It may assume a value between 0 and 0xF in NOR Flash memories
85 with synchronous burst mode enable */
87 uint32_t FSMC_AccessMode; /*!< Specifies the asynchronous access mode.
88 This parameter can be a value of @ref FSMC_Access_Mode */
89 }FSMC_NORSRAMTimingInitTypeDef;
91 /**
92 * @brief FSMC NOR/SRAM Init structure definition
94 typedef struct
96 uint32_t FSMC_Bank; /*!< Specifies the NOR/SRAM memory bank that will be used.
97 This parameter can be a value of @ref FSMC_NORSRAM_Bank */
99 uint32_t FSMC_DataAddressMux; /*!< Specifies whether the address and data values are
100 multiplexed on the data bus or not.
101 This parameter can be a value of @ref FSMC_Data_Address_Bus_Multiplexing */
103 uint32_t FSMC_MemoryType; /*!< Specifies the type of external memory attached to
104 the corresponding memory bank.
105 This parameter can be a value of @ref FSMC_Memory_Type */
107 uint32_t FSMC_MemoryDataWidth; /*!< Specifies the external memory device width.
108 This parameter can be a value of @ref FSMC_Data_Width */
110 uint32_t FSMC_BurstAccessMode; /*!< Enables or disables the burst access mode for Flash memory,
111 valid only with synchronous burst Flash memories.
112 This parameter can be a value of @ref FSMC_Burst_Access_Mode */
114 uint32_t FSMC_AsynchronousWait; /*!< Enables or disables wait signal during asynchronous transfers,
115 valid only with asynchronous Flash memories.
116 This parameter can be a value of @ref FSMC_AsynchronousWait */
118 uint32_t FSMC_WaitSignalPolarity; /*!< Specifies the wait signal polarity, valid only when accessing
119 the Flash memory in burst mode.
120 This parameter can be a value of @ref FSMC_Wait_Signal_Polarity */
122 uint32_t FSMC_WrapMode; /*!< Enables or disables the Wrapped burst access mode for Flash
123 memory, valid only when accessing Flash memories in burst mode.
124 This parameter can be a value of @ref FSMC_Wrap_Mode */
126 uint32_t FSMC_WaitSignalActive; /*!< Specifies if the wait signal is asserted by the memory one
127 clock cycle before the wait state or during the wait state,
128 valid only when accessing memories in burst mode.
129 This parameter can be a value of @ref FSMC_Wait_Timing */
131 uint32_t FSMC_WriteOperation; /*!< Enables or disables the write operation in the selected bank by the FSMC.
132 This parameter can be a value of @ref FSMC_Write_Operation */
134 uint32_t FSMC_WaitSignal; /*!< Enables or disables the wait state insertion via wait
135 signal, valid for Flash memory access in burst mode.
136 This parameter can be a value of @ref FSMC_Wait_Signal */
138 uint32_t FSMC_ExtendedMode; /*!< Enables or disables the extended mode.
139 This parameter can be a value of @ref FSMC_Extended_Mode */
141 uint32_t FSMC_WriteBurst; /*!< Enables or disables the write burst operation.
142 This parameter can be a value of @ref FSMC_Write_Burst */
144 FSMC_NORSRAMTimingInitTypeDef* FSMC_ReadWriteTimingStruct; /*!< Timing Parameters for write and read access if the Extended Mode is not used*/
146 FSMC_NORSRAMTimingInitTypeDef* FSMC_WriteTimingStruct; /*!< Timing Parameters for write access if the Extended Mode is used*/
147 }FSMC_NORSRAMInitTypeDef;
149 /**
150 * @brief Timing parameters For FSMC NAND and PCCARD Banks
152 typedef struct
154 uint32_t FSMC_SetupTime; /*!< Defines the number of HCLK cycles to setup address before
155 the command assertion for NAND Flash read or write access
156 to common/Attribute or I/O memory space (depending on
157 the memory space timing to be configured).
158 This parameter can be a value between 0 and 0xFF.*/
160 uint32_t FSMC_WaitSetupTime; /*!< Defines the minimum number of HCLK cycles to assert the
161 command for NAND Flash read or write access to
162 common/Attribute or I/O memory space (depending on the
163 memory space timing to be configured).
164 This parameter can be a number between 0x00 and 0xFF */
166 uint32_t FSMC_HoldSetupTime; /*!< Defines the number of HCLK clock cycles to hold address
167 (and data for write access) after the command de-assertion
168 for NAND Flash read or write access to common/Attribute
169 or I/O memory space (depending on the memory space timing
170 to be configured).
171 This parameter can be a number between 0x00 and 0xFF */
173 uint32_t FSMC_HiZSetupTime; /*!< Defines the number of HCLK clock cycles during which the
174 data bus is kept in HiZ after the start of a NAND Flash
175 write access to common/Attribute or I/O memory space (depending
176 on the memory space timing to be configured).
177 This parameter can be a number between 0x00 and 0xFF */
178 }FSMC_NAND_PCCARDTimingInitTypeDef;
180 /**
181 * @brief FSMC NAND Init structure definition
183 typedef struct
185 uint32_t FSMC_Bank; /*!< Specifies the NAND memory bank that will be used.
186 This parameter can be a value of @ref FSMC_NAND_Bank */
188 uint32_t FSMC_Waitfeature; /*!< Enables or disables the Wait feature for the NAND Memory Bank.
189 This parameter can be any value of @ref FSMC_Wait_feature */
191 uint32_t FSMC_MemoryDataWidth; /*!< Specifies the external memory device width.
192 This parameter can be any value of @ref FSMC_Data_Width */
194 uint32_t FSMC_ECC; /*!< Enables or disables the ECC computation.
195 This parameter can be any value of @ref FSMC_ECC */
197 uint32_t FSMC_ECCPageSize; /*!< Defines the page size for the extended ECC.
198 This parameter can be any value of @ref FSMC_ECC_Page_Size */
200 uint32_t FSMC_TCLRSetupTime; /*!< Defines the number of HCLK cycles to configure the
201 delay between CLE low and RE low.
202 This parameter can be a value between 0 and 0xFF. */
204 uint32_t FSMC_TARSetupTime; /*!< Defines the number of HCLK cycles to configure the
205 delay between ALE low and RE low.
206 This parameter can be a number between 0x0 and 0xFF */
208 FSMC_NAND_PCCARDTimingInitTypeDef* FSMC_CommonSpaceTimingStruct; /*!< FSMC Common Space Timing */
210 FSMC_NAND_PCCARDTimingInitTypeDef* FSMC_AttributeSpaceTimingStruct; /*!< FSMC Attribute Space Timing */
211 }FSMC_NANDInitTypeDef;
213 /**
214 * @brief FSMC PCCARD Init structure definition
217 typedef struct
219 uint32_t FSMC_Waitfeature; /*!< Enables or disables the Wait feature for the Memory Bank.
220 This parameter can be any value of @ref FSMC_Wait_feature */
222 uint32_t FSMC_TCLRSetupTime; /*!< Defines the number of HCLK cycles to configure the
223 delay between CLE low and RE low.
224 This parameter can be a value between 0 and 0xFF. */
226 uint32_t FSMC_TARSetupTime; /*!< Defines the number of HCLK cycles to configure the
227 delay between ALE low and RE low.
228 This parameter can be a number between 0x0 and 0xFF */
231 FSMC_NAND_PCCARDTimingInitTypeDef* FSMC_CommonSpaceTimingStruct; /*!< FSMC Common Space Timing */
233 FSMC_NAND_PCCARDTimingInitTypeDef* FSMC_AttributeSpaceTimingStruct; /*!< FSMC Attribute Space Timing */
235 FSMC_NAND_PCCARDTimingInitTypeDef* FSMC_IOSpaceTimingStruct; /*!< FSMC IO Space Timing */
236 }FSMC_PCCARDInitTypeDef;
238 /* Exported constants --------------------------------------------------------*/
240 /** @defgroup FSMC_Exported_Constants
241 * @{
244 /** @defgroup FSMC_NORSRAM_Bank
245 * @{
247 #define FSMC_Bank1_NORSRAM1 ((uint32_t)0x00000000)
248 #define FSMC_Bank1_NORSRAM2 ((uint32_t)0x00000002)
249 #define FSMC_Bank1_NORSRAM3 ((uint32_t)0x00000004)
250 #define FSMC_Bank1_NORSRAM4 ((uint32_t)0x00000006)
252 * @}
255 /** @defgroup FSMC_NAND_Bank
256 * @{
258 #define FSMC_Bank2_NAND ((uint32_t)0x00000010)
259 #define FSMC_Bank3_NAND ((uint32_t)0x00000100)
261 * @}
264 /** @defgroup FSMC_PCCARD_Bank
265 * @{
267 #define FSMC_Bank4_PCCARD ((uint32_t)0x00001000)
269 * @}
272 #define IS_FSMC_NORSRAM_BANK(BANK) (((BANK) == FSMC_Bank1_NORSRAM1) || \
273 ((BANK) == FSMC_Bank1_NORSRAM2) || \
274 ((BANK) == FSMC_Bank1_NORSRAM3) || \
275 ((BANK) == FSMC_Bank1_NORSRAM4))
277 #define IS_FSMC_NAND_BANK(BANK) (((BANK) == FSMC_Bank2_NAND) || \
278 ((BANK) == FSMC_Bank3_NAND))
280 #define IS_FSMC_GETFLAG_BANK(BANK) (((BANK) == FSMC_Bank2_NAND) || \
281 ((BANK) == FSMC_Bank3_NAND) || \
282 ((BANK) == FSMC_Bank4_PCCARD))
284 #define IS_FSMC_IT_BANK(BANK) (((BANK) == FSMC_Bank2_NAND) || \
285 ((BANK) == FSMC_Bank3_NAND) || \
286 ((BANK) == FSMC_Bank4_PCCARD))
288 /** @defgroup FSMC_NOR_SRAM_Controller
289 * @{
292 /** @defgroup FSMC_Data_Address_Bus_Multiplexing
293 * @{
296 #define FSMC_DataAddressMux_Disable ((uint32_t)0x00000000)
297 #define FSMC_DataAddressMux_Enable ((uint32_t)0x00000002)
298 #define IS_FSMC_MUX(MUX) (((MUX) == FSMC_DataAddressMux_Disable) || \
299 ((MUX) == FSMC_DataAddressMux_Enable))
301 * @}
304 /** @defgroup FSMC_Memory_Type
305 * @{
308 #define FSMC_MemoryType_SRAM ((uint32_t)0x00000000)
309 #define FSMC_MemoryType_PSRAM ((uint32_t)0x00000004)
310 #define FSMC_MemoryType_NOR ((uint32_t)0x00000008)
311 #define IS_FSMC_MEMORY(MEMORY) (((MEMORY) == FSMC_MemoryType_SRAM) || \
312 ((MEMORY) == FSMC_MemoryType_PSRAM)|| \
313 ((MEMORY) == FSMC_MemoryType_NOR))
315 * @}
318 /** @defgroup FSMC_Data_Width
319 * @{
322 #define FSMC_MemoryDataWidth_8b ((uint32_t)0x00000000)
323 #define FSMC_MemoryDataWidth_16b ((uint32_t)0x00000010)
324 #define IS_FSMC_MEMORY_WIDTH(WIDTH) (((WIDTH) == FSMC_MemoryDataWidth_8b) || \
325 ((WIDTH) == FSMC_MemoryDataWidth_16b))
327 * @}
330 /** @defgroup FSMC_Burst_Access_Mode
331 * @{
334 #define FSMC_BurstAccessMode_Disable ((uint32_t)0x00000000)
335 #define FSMC_BurstAccessMode_Enable ((uint32_t)0x00000100)
336 #define IS_FSMC_BURSTMODE(STATE) (((STATE) == FSMC_BurstAccessMode_Disable) || \
337 ((STATE) == FSMC_BurstAccessMode_Enable))
339 * @}
342 /** @defgroup FSMC_AsynchronousWait
343 * @{
345 #define FSMC_AsynchronousWait_Disable ((uint32_t)0x00000000)
346 #define FSMC_AsynchronousWait_Enable ((uint32_t)0x00008000)
347 #define IS_FSMC_ASYNWAIT(STATE) (((STATE) == FSMC_AsynchronousWait_Disable) || \
348 ((STATE) == FSMC_AsynchronousWait_Enable))
350 * @}
353 /** @defgroup FSMC_Wait_Signal_Polarity
354 * @{
356 #define FSMC_WaitSignalPolarity_Low ((uint32_t)0x00000000)
357 #define FSMC_WaitSignalPolarity_High ((uint32_t)0x00000200)
358 #define IS_FSMC_WAIT_POLARITY(POLARITY) (((POLARITY) == FSMC_WaitSignalPolarity_Low) || \
359 ((POLARITY) == FSMC_WaitSignalPolarity_High))
361 * @}
364 /** @defgroup FSMC_Wrap_Mode
365 * @{
367 #define FSMC_WrapMode_Disable ((uint32_t)0x00000000)
368 #define FSMC_WrapMode_Enable ((uint32_t)0x00000400)
369 #define IS_FSMC_WRAP_MODE(MODE) (((MODE) == FSMC_WrapMode_Disable) || \
370 ((MODE) == FSMC_WrapMode_Enable))
372 * @}
375 /** @defgroup FSMC_Wait_Timing
376 * @{
378 #define FSMC_WaitSignalActive_BeforeWaitState ((uint32_t)0x00000000)
379 #define FSMC_WaitSignalActive_DuringWaitState ((uint32_t)0x00000800)
380 #define IS_FSMC_WAIT_SIGNAL_ACTIVE(ACTIVE) (((ACTIVE) == FSMC_WaitSignalActive_BeforeWaitState) || \
381 ((ACTIVE) == FSMC_WaitSignalActive_DuringWaitState))
383 * @}
386 /** @defgroup FSMC_Write_Operation
387 * @{
389 #define FSMC_WriteOperation_Disable ((uint32_t)0x00000000)
390 #define FSMC_WriteOperation_Enable ((uint32_t)0x00001000)
391 #define IS_FSMC_WRITE_OPERATION(OPERATION) (((OPERATION) == FSMC_WriteOperation_Disable) || \
392 ((OPERATION) == FSMC_WriteOperation_Enable))
394 * @}
397 /** @defgroup FSMC_Wait_Signal
398 * @{
400 #define FSMC_WaitSignal_Disable ((uint32_t)0x00000000)
401 #define FSMC_WaitSignal_Enable ((uint32_t)0x00002000)
402 #define IS_FSMC_WAITE_SIGNAL(SIGNAL) (((SIGNAL) == FSMC_WaitSignal_Disable) || \
403 ((SIGNAL) == FSMC_WaitSignal_Enable))
405 * @}
408 /** @defgroup FSMC_Extended_Mode
409 * @{
411 #define FSMC_ExtendedMode_Disable ((uint32_t)0x00000000)
412 #define FSMC_ExtendedMode_Enable ((uint32_t)0x00004000)
414 #define IS_FSMC_EXTENDED_MODE(MODE) (((MODE) == FSMC_ExtendedMode_Disable) || \
415 ((MODE) == FSMC_ExtendedMode_Enable))
417 * @}
420 /** @defgroup FSMC_Write_Burst
421 * @{
424 #define FSMC_WriteBurst_Disable ((uint32_t)0x00000000)
425 #define FSMC_WriteBurst_Enable ((uint32_t)0x00080000)
426 #define IS_FSMC_WRITE_BURST(BURST) (((BURST) == FSMC_WriteBurst_Disable) || \
427 ((BURST) == FSMC_WriteBurst_Enable))
429 * @}
432 /** @defgroup FSMC_Address_Setup_Time
433 * @{
435 #define IS_FSMC_ADDRESS_SETUP_TIME(TIME) ((TIME) <= 0xF)
437 * @}
440 /** @defgroup FSMC_Address_Hold_Time
441 * @{
443 #define IS_FSMC_ADDRESS_HOLD_TIME(TIME) ((TIME) <= 0xF)
445 * @}
448 /** @defgroup FSMC_Data_Setup_Time
449 * @{
451 #define IS_FSMC_DATASETUP_TIME(TIME) (((TIME) > 0) && ((TIME) <= 0xFF))
453 * @}
456 /** @defgroup FSMC_Bus_Turn_around_Duration
457 * @{
459 #define IS_FSMC_TURNAROUND_TIME(TIME) ((TIME) <= 0xF)
461 * @}
464 /** @defgroup FSMC_CLK_Division
465 * @{
467 #define IS_FSMC_CLK_DIV(DIV) ((DIV) <= 0xF)
469 * @}
472 /** @defgroup FSMC_Data_Latency
473 * @{
475 #define IS_FSMC_DATA_LATENCY(LATENCY) ((LATENCY) <= 0xF)
477 * @}
480 /** @defgroup FSMC_Access_Mode
481 * @{
483 #define FSMC_AccessMode_A ((uint32_t)0x00000000)
484 #define FSMC_AccessMode_B ((uint32_t)0x10000000)
485 #define FSMC_AccessMode_C ((uint32_t)0x20000000)
486 #define FSMC_AccessMode_D ((uint32_t)0x30000000)
487 #define IS_FSMC_ACCESS_MODE(MODE) (((MODE) == FSMC_AccessMode_A) || \
488 ((MODE) == FSMC_AccessMode_B) || \
489 ((MODE) == FSMC_AccessMode_C) || \
490 ((MODE) == FSMC_AccessMode_D))
492 * @}
496 * @}
499 /** @defgroup FSMC_NAND_PCCARD_Controller
500 * @{
503 /** @defgroup FSMC_Wait_feature
504 * @{
506 #define FSMC_Waitfeature_Disable ((uint32_t)0x00000000)
507 #define FSMC_Waitfeature_Enable ((uint32_t)0x00000002)
508 #define IS_FSMC_WAIT_FEATURE(FEATURE) (((FEATURE) == FSMC_Waitfeature_Disable) || \
509 ((FEATURE) == FSMC_Waitfeature_Enable))
511 * @}
515 /** @defgroup FSMC_ECC
516 * @{
518 #define FSMC_ECC_Disable ((uint32_t)0x00000000)
519 #define FSMC_ECC_Enable ((uint32_t)0x00000040)
520 #define IS_FSMC_ECC_STATE(STATE) (((STATE) == FSMC_ECC_Disable) || \
521 ((STATE) == FSMC_ECC_Enable))
523 * @}
526 /** @defgroup FSMC_ECC_Page_Size
527 * @{
529 #define FSMC_ECCPageSize_256Bytes ((uint32_t)0x00000000)
530 #define FSMC_ECCPageSize_512Bytes ((uint32_t)0x00020000)
531 #define FSMC_ECCPageSize_1024Bytes ((uint32_t)0x00040000)
532 #define FSMC_ECCPageSize_2048Bytes ((uint32_t)0x00060000)
533 #define FSMC_ECCPageSize_4096Bytes ((uint32_t)0x00080000)
534 #define FSMC_ECCPageSize_8192Bytes ((uint32_t)0x000A0000)
535 #define IS_FSMC_ECCPAGE_SIZE(SIZE) (((SIZE) == FSMC_ECCPageSize_256Bytes) || \
536 ((SIZE) == FSMC_ECCPageSize_512Bytes) || \
537 ((SIZE) == FSMC_ECCPageSize_1024Bytes) || \
538 ((SIZE) == FSMC_ECCPageSize_2048Bytes) || \
539 ((SIZE) == FSMC_ECCPageSize_4096Bytes) || \
540 ((SIZE) == FSMC_ECCPageSize_8192Bytes))
542 * @}
545 /** @defgroup FSMC_TCLR_Setup_Time
546 * @{
548 #define IS_FSMC_TCLR_TIME(TIME) ((TIME) <= 0xFF)
550 * @}
553 /** @defgroup FSMC_TAR_Setup_Time
554 * @{
556 #define IS_FSMC_TAR_TIME(TIME) ((TIME) <= 0xFF)
558 * @}
561 /** @defgroup FSMC_Setup_Time
562 * @{
564 #define IS_FSMC_SETUP_TIME(TIME) ((TIME) <= 0xFF)
566 * @}
569 /** @defgroup FSMC_Wait_Setup_Time
570 * @{
572 #define IS_FSMC_WAIT_TIME(TIME) ((TIME) <= 0xFF)
574 * @}
577 /** @defgroup FSMC_Hold_Setup_Time
578 * @{
580 #define IS_FSMC_HOLD_TIME(TIME) ((TIME) <= 0xFF)
582 * @}
585 /** @defgroup FSMC_HiZ_Setup_Time
586 * @{
588 #define IS_FSMC_HIZ_TIME(TIME) ((TIME) <= 0xFF)
590 * @}
593 /** @defgroup FSMC_Interrupt_sources
594 * @{
596 #define FSMC_IT_RisingEdge ((uint32_t)0x00000008)
597 #define FSMC_IT_Level ((uint32_t)0x00000010)
598 #define FSMC_IT_FallingEdge ((uint32_t)0x00000020)
599 #define IS_FSMC_IT(IT) ((((IT) & (uint32_t)0xFFFFFFC7) == 0x00000000) && ((IT) != 0x00000000))
600 #define IS_FSMC_GET_IT(IT) (((IT) == FSMC_IT_RisingEdge) || \
601 ((IT) == FSMC_IT_Level) || \
602 ((IT) == FSMC_IT_FallingEdge))
604 * @}
607 /** @defgroup FSMC_Flags
608 * @{
610 #define FSMC_FLAG_RisingEdge ((uint32_t)0x00000001)
611 #define FSMC_FLAG_Level ((uint32_t)0x00000002)
612 #define FSMC_FLAG_FallingEdge ((uint32_t)0x00000004)
613 #define FSMC_FLAG_FEMPT ((uint32_t)0x00000040)
614 #define IS_FSMC_GET_FLAG(FLAG) (((FLAG) == FSMC_FLAG_RisingEdge) || \
615 ((FLAG) == FSMC_FLAG_Level) || \
616 ((FLAG) == FSMC_FLAG_FallingEdge) || \
617 ((FLAG) == FSMC_FLAG_FEMPT))
619 #define IS_FSMC_CLEAR_FLAG(FLAG) ((((FLAG) & (uint32_t)0xFFFFFFF8) == 0x00000000) && ((FLAG) != 0x00000000))
621 * @}
625 * @}
629 * @}
632 /* Exported macro ------------------------------------------------------------*/
633 /* Exported functions --------------------------------------------------------*/
635 /* NOR/SRAM Controller functions **********************************************/
636 void FSMC_NORSRAMDeInit(uint32_t FSMC_Bank);
637 void FSMC_NORSRAMInit(FSMC_NORSRAMInitTypeDef* FSMC_NORSRAMInitStruct);
638 void FSMC_NORSRAMStructInit(FSMC_NORSRAMInitTypeDef* FSMC_NORSRAMInitStruct);
639 void FSMC_NORSRAMCmd(uint32_t FSMC_Bank, FunctionalState NewState);
641 /* NAND Controller functions **************************************************/
642 void FSMC_NANDDeInit(uint32_t FSMC_Bank);
643 void FSMC_NANDInit(FSMC_NANDInitTypeDef* FSMC_NANDInitStruct);
644 void FSMC_NANDStructInit(FSMC_NANDInitTypeDef* FSMC_NANDInitStruct);
645 void FSMC_NANDCmd(uint32_t FSMC_Bank, FunctionalState NewState);
646 void FSMC_NANDECCCmd(uint32_t FSMC_Bank, FunctionalState NewState);
647 uint32_t FSMC_GetECC(uint32_t FSMC_Bank);
649 /* PCCARD Controller functions ************************************************/
650 void FSMC_PCCARDDeInit(void);
651 void FSMC_PCCARDInit(FSMC_PCCARDInitTypeDef* FSMC_PCCARDInitStruct);
652 void FSMC_PCCARDStructInit(FSMC_PCCARDInitTypeDef* FSMC_PCCARDInitStruct);
653 void FSMC_PCCARDCmd(FunctionalState NewState);
655 /* Interrupts and flags management functions **********************************/
656 void FSMC_ITConfig(uint32_t FSMC_Bank, uint32_t FSMC_IT, FunctionalState NewState);
657 FlagStatus FSMC_GetFlagStatus(uint32_t FSMC_Bank, uint32_t FSMC_FLAG);
658 void FSMC_ClearFlag(uint32_t FSMC_Bank, uint32_t FSMC_FLAG);
659 ITStatus FSMC_GetITStatus(uint32_t FSMC_Bank, uint32_t FSMC_IT);
660 void FSMC_ClearITPendingBit(uint32_t FSMC_Bank, uint32_t FSMC_IT);
662 #ifdef __cplusplus
664 #endif
666 #endif /*__STM32F4xx_FSMC_H */
668 * @}
672 * @}
675 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/