diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-11-29 12:44:15 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-11-29 12:44:15 +0000 |
commit | 2c625c6cfaa6d719c0dabe41c33e430ebf91f7a8 (patch) | |
tree | f76c1a6f1305872dc780cc2179fa875615a77917 | |
parent | 56efe5ddcacc0a2707ba5dc891d2591044e3494f (diff) | |
download | ChibiOS-2c625c6cfaa6d719c0dabe41c33e430ebf91f7a8.tar.gz ChibiOS-2c625c6cfaa6d719c0dabe41c33e430ebf91f7a8.tar.bz2 ChibiOS-2c625c6cfaa6d719c0dabe41c33e430ebf91f7a8.zip |
Fixed bug #676.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8550 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/hal/ports/STM32/STM32F7xx/hal_lld.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/ports/STM32/STM32F7xx/hal_lld.h b/os/hal/ports/STM32/STM32F7xx/hal_lld.h index 9272adb96..effb9eb6f 100644 --- a/os/hal/ports/STM32/STM32F7xx/hal_lld.h +++ b/os/hal/ports/STM32/STM32F7xx/hal_lld.h @@ -1804,7 +1804,7 @@ #if (STM32_CK48MSEL == STM32_CK48MSEL_PLL) || defined(__DOXYGEN__)
#define STM32_PLL48CLK (STM32_PLLVCO / STM32_PLLQ_VALUE)
#elif STM32_CK48MSEL == STM32_CK48MSEL_PLLSAI
-#define STM32_PLL48CLK (STM32_PLLVCO / STM32_PLLSAIQ_VALUE)
+#define STM32_PLL48CLK (STM32_PLLSAIVCO / STM32_PLLSAIQ_VALUE)
#else
#error "invalid source selected for PLL48CLK clock"
#endif
|