aboutsummaryrefslogtreecommitdiffstats
path: root/os
diff options
context:
space:
mode:
authorNicolas Reinecke <nr@das-labor.org>2016-08-31 00:34:50 +0200
committerNicolas Reinecke <nr@das-labor.org>2016-11-08 21:07:23 +0100
commita6158cef3c99478e6aeea0380d0fdf414824e38a (patch)
tree4f5b86d1325c09e51ebe421a3a640511efe071eb /os
parent48b3e076d87a51d45bc4d1b173f045c8db7c1a9c (diff)
downloadChibiOS-Contrib-a6158cef3c99478e6aeea0380d0fdf414824e38a.tar.gz
ChibiOS-Contrib-a6158cef3c99478e6aeea0380d0fdf414824e38a.tar.bz2
ChibiOS-Contrib-a6158cef3c99478e6aeea0380d0fdf414824e38a.zip
add STM32F7 FMC write FIFO disable bit
Diffstat (limited to 'os')
-rw-r--r--os/hal/ports/STM32/LLD/FSMCv1/hal_fsmc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/os/hal/ports/STM32/LLD/FSMCv1/hal_fsmc.h b/os/hal/ports/STM32/LLD/FSMCv1/hal_fsmc.h
index f0d4c65..f4837f5 100644
--- a/os/hal/ports/STM32/LLD/FSMCv1/hal_fsmc.h
+++ b/os/hal/ports/STM32/LLD/FSMCv1/hal_fsmc.h
@@ -230,6 +230,9 @@ typedef struct {
defined(STM32F7))
#define FSMC_BCR_CCLKEN ((uint32_t)1 << 20)
#endif
+#if (defined(STM32F7))
+#define FSMC_BCR_WFDIS ((uint32_t)1 << 21)
+#endif
/*===========================================================================*/
/* Driver pre-compile time settings. */