Fixed Bug #743
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_16.1.x@9513 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
7a28c272f8
commit
fe8c9f5277
|
@ -392,11 +392,11 @@
|
||||||
#define STM32_MCO2PRE_DIV4 (6 << 27) /**< MCO2 divided by 4. */
|
#define STM32_MCO2PRE_DIV4 (6 << 27) /**< MCO2 divided by 4. */
|
||||||
#define STM32_MCO2PRE_DIV5 (7 << 27) /**< MCO2 divided by 5. */
|
#define STM32_MCO2PRE_DIV5 (7 << 27) /**< MCO2 divided by 5. */
|
||||||
|
|
||||||
#define STM32_MCO2SEL_MASK (3U << 30) /**< MCO2 mask. */
|
#define STM32_MCO2SEL_MASK (3 << 30) /**< MCO2 mask. */
|
||||||
#define STM32_MCO2SEL_SYSCLK (0U << 30) /**< SYSCLK clock on MCO2 pin. */
|
#define STM32_MCO2SEL_SYSCLK (0 << 30) /**< SYSCLK clock on MCO2 pin. */
|
||||||
#define STM32_MCO2SEL_PLLI2S (1U << 30) /**< PLLI2S clock on MCO2 pin. */
|
#define STM32_MCO2SEL_PLLI2S (1 << 30) /**< PLLI2S clock on MCO2 pin. */
|
||||||
#define STM32_MCO2SEL_HSE (2U << 30) /**< HSE clock on MCO2 pin. */
|
#define STM32_MCO2SEL_HSE (2 << 30) /**< HSE clock on MCO2 pin. */
|
||||||
#define STM32_MCO2SEL_PLL (3U << 30) /**< PLL clock on MCO2 pin. */
|
#define STM32_MCO2SEL_PLL (3 << 30) /**< PLL clock on MCO2 pin. */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @name RCC_PLLI2SCFGR register bits definitions
|
* @name RCC_PLLI2SCFGR register bits definitions
|
||||||
|
@ -1286,7 +1286,7 @@
|
||||||
*/
|
*/
|
||||||
#if (STM32_I2SSRC == STM32_I2SSRC_PLLI2S) || defined(__DOXYGEN__)
|
#if (STM32_I2SSRC == STM32_I2SSRC_PLLI2S) || defined(__DOXYGEN__)
|
||||||
/**
|
/**
|
||||||
* @brief PLL activation flag.
|
* @brief PLLI2S activation flag.
|
||||||
*/
|
*/
|
||||||
#define STM32_ACTIVATE_PLLI2S TRUE
|
#define STM32_ACTIVATE_PLLI2S TRUE
|
||||||
#else
|
#else
|
||||||
|
@ -1321,7 +1321,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief PLL activation flag.
|
* @brief PLLSAI activation flag.
|
||||||
*/
|
*/
|
||||||
#if (STM32_SAISRC == STM32_SAISRC_PLL) || defined(__DOXYGEN__)
|
#if (STM32_SAISRC == STM32_SAISRC_PLL) || defined(__DOXYGEN__)
|
||||||
#define STM32_ACTIVATE_PLLSAI TRUE
|
#define STM32_ACTIVATE_PLLSAI TRUE
|
||||||
|
|
|
@ -73,6 +73,7 @@
|
||||||
*****************************************************************************
|
*****************************************************************************
|
||||||
|
|
||||||
*** 16.1.5 ***
|
*** 16.1.5 ***
|
||||||
|
- HAL: Fixed wrong indent in STM32F4xx hal_lld.h (bug #743).
|
||||||
- HAL: Removed unused macros in STM32F7xx and STM32F4xx hal_lld.h (bug #742).
|
- HAL: Removed unused macros in STM32F7xx and STM32F4xx hal_lld.h (bug #742).
|
||||||
- HAL: Fixed Doxygen related macros in STM32F7xx, STM32L0xx and STM32L4xx
|
- HAL: Fixed Doxygen related macros in STM32F7xx, STM32L0xx and STM32L4xx
|
||||||
lld files (bug #741).
|
lld files (bug #741).
|
||||||
|
|
Loading…
Reference in New Issue