stm32h7: fmc: added bit defs for async configuration.

This commit is contained in:
Brian Viele 2020-02-03 20:26:44 -05:00 committed by Karl Palsson
parent 72274d3caf
commit cb0661f81d
1 changed files with 7 additions and 0 deletions

View File

@ -33,6 +33,13 @@
/* --- Convenience macros -------------------------------------------------- */
#define FSMC_BASE FMC_BASE
/** FMCEN: Global FMC controller Enable. Note: Don't care in BCR2..4 */
#define FSMC_BCR_FMCEN BIT31
/** WFDIS: Global Write FIFO Disable. Note: Don't care in BCR2..4 */
#define FSMC_BCR_WFDIS BIT21
/** WFDIS: Global Continuous Clock Enable. Note: Don't care in BCR2..4 */
#define FSMC_BCR_CCLKEN BIT20
#endif
/**@}*/