Merge pull request #137 from dflogeras/add-stm32f769-to-sdram

Add STM32F769 to FSMCv1 sdram driver
This commit is contained in:
Uladzimir Pylinski 2017-12-15 21:12:39 +03:00 committed by GitHub
commit b5321c7e0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 3 deletions

View File

@ -36,7 +36,7 @@
*/
#if (defined(STM32F427xx) || defined(STM32F437xx) || \
defined(STM32F429xx) || defined(STM32F439xx) || \
defined(STM32F7))
defined(STM32F769xx))
#if !defined(FSMC_Bank1_R_BASE)
#define FSMC_Bank1_R_BASE (FMC_R_BASE + 0x0000)
#endif

View File

@ -28,7 +28,8 @@
#include "hal.h"
#if (defined(STM32F427xx) || defined(STM32F437xx) || \
defined(STM32F429xx) || defined(STM32F439xx))
defined(STM32F429xx) || defined(STM32F439xx) || \
defined(STM32F769xx))
#if (STM32_USE_FSMC_SDRAM == TRUE) || defined(__DOXYGEN__)

View File

@ -29,7 +29,8 @@
#define HAL_FMC_SDRAM_H_
#if (defined(STM32F427xx) || defined(STM32F437xx) || \
defined(STM32F429xx) || defined(STM32F439xx))
defined(STM32F429xx) || defined(STM32F439xx) || \
defined(STM32F769xx))
#include "hal_fsmc.h"