![]() |
STM32F769IDiscovery
1.00
uDANTE Audio Networking with STM32F7 DISCO board
|
Macros | |
#define | __HAL_RCC_PLL_ENABLE() SET_BIT(RCC->CR, RCC_CR_PLLON) |
Macros to enable or disable the main PLL. More... | |
#define | __HAL_RCC_PLL_DISABLE() CLEAR_BIT(RCC->CR, RCC_CR_PLLON) |
#define | __HAL_RCC_PLL_PLLSOURCE_CONFIG(__PLLSOURCE__) MODIFY_REG(RCC->PLLCFGR, RCC_PLLCFGR_PLLSRC, (__PLLSOURCE__)) |
Macro to configure the PLL clock source. More... | |
#define | __HAL_RCC_PLL_PLLM_CONFIG(__PLLM__) MODIFY_REG(RCC->PLLCFGR, RCC_PLLCFGR_PLLM, (__PLLM__)) |
Macro to configure the PLL multiplication factor. More... | |
#define __HAL_RCC_PLL_DISABLE | ( | ) | CLEAR_BIT(RCC->CR, RCC_CR_PLLON) |
Definition at line 884 of file stm32f7xx_hal_rcc.h.
#define __HAL_RCC_PLL_ENABLE | ( | ) | SET_BIT(RCC->CR, RCC_CR_PLLON) |
Macros to enable or disable the main PLL.
Definition at line 883 of file stm32f7xx_hal_rcc.h.
#define __HAL_RCC_PLL_PLLM_CONFIG | ( | __PLLM__ | ) | MODIFY_REG(RCC->PLLCFGR, RCC_PLLCFGR_PLLM, (__PLLM__)) |
Macro to configure the PLL multiplication factor.
<strong>PLLM</strong> | specifies the division factor for PLL VCO input clock This parameter must be a number between Min_Data = 2 and Max_Data = 63. |
Definition at line 905 of file stm32f7xx_hal_rcc.h.
#define __HAL_RCC_PLL_PLLSOURCE_CONFIG | ( | __PLLSOURCE__ | ) | MODIFY_REG(RCC->PLLCFGR, RCC_PLLCFGR_PLLSRC, (__PLLSOURCE__)) |
Macro to configure the PLL clock source.
<strong>PLLSOURCE</strong> | specifies the PLL entry clock source. This parameter can be one of the following values:
|
Definition at line 894 of file stm32f7xx_hal_rcc.h.