diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-08-31 13:35:24 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-08-31 13:35:24 +0000 |
commit | c83eac2f289ffe50b7910c383e081fd461e688d1 (patch) | |
tree | 01e415a8eb623189f571e6dd1ff37a81732822ac /os | |
parent | 5bfcb44b51318eaa7d93070fb63d07198d45b01a (diff) | |
download | ChibiOS-c83eac2f289ffe50b7910c383e081fd461e688d1.tar.gz ChibiOS-c83eac2f289ffe50b7910c383e081fd461e688d1.tar.bz2 ChibiOS-c83eac2f289ffe50b7910c383e081fd461e688d1.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8262 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r-- | os/hal/ports/STM32/STM32F7xx/hal_lld.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/os/hal/ports/STM32/STM32F7xx/hal_lld.h b/os/hal/ports/STM32/STM32F7xx/hal_lld.h index 4cc49e554..5645e0bc9 100644 --- a/os/hal/ports/STM32/STM32F7xx/hal_lld.h +++ b/os/hal/ports/STM32/STM32F7xx/hal_lld.h @@ -402,9 +402,9 @@ #define STM32_CK48MSEL_PLL (0 << 27) /**< PLL48CLK source is PLL. */
#define STM32_CK48MSEL_PLLSAI (1 << 27) /**< PLL48CLK source is PLLSAI. */
-#define STM32_SDMMCSEL_MASK (1 << 27) /**< SDMMCSEL mask. */
-#define STM32_SDMMCSEL_PLL48CLK (0 << 27) /**< SDMMC source is PLL48CLK. */
-#define STM32_SDMMCSEL_SYSCLK (1 << 27) /**< SDMMC source is SYSCLK. */
+#define STM32_SDMMCSEL_MASK (1 << 28) /**< SDMMCSEL mask. */
+#define STM32_SDMMCSEL_PLL48CLK (0 << 28) /**< SDMMC source is PLL48CLK. */
+#define STM32_SDMMCSEL_SYSCLK (1 << 28) /**< SDMMC source is SYSCLK. */
/** @} */
/**
|