STM32F479xx HAL User Manual
|
Defines | |
#define | __HAL_RCC_PLL_ENABLE() (*(__IO uint32_t *) RCC_CR_PLLON_BB = ENABLE) |
Macros to enable or disable the main PLL. | |
#define | __HAL_RCC_PLL_DISABLE() (*(__IO uint32_t *) RCC_CR_PLLON_BB = DISABLE) |
#define | __HAL_RCC_PLL_PLLSOURCE_CONFIG(__PLLSOURCE__) MODIFY_REG(RCC->PLLCFGR, RCC_PLLCFGR_PLLSRC, (__PLLSOURCE__)) |
Macro to configure the PLL clock source. | |
#define | __HAL_RCC_PLL_PLLM_CONFIG(__PLLM__) MODIFY_REG(RCC->PLLCFGR, RCC_PLLCFGR_PLLM, (__PLLM__)) |
Macro to configure the PLL multiplication factor. |
#define __HAL_RCC_PLL_DISABLE | ( | ) | (*(__IO uint32_t *) RCC_CR_PLLON_BB = DISABLE) |
Definition at line 1036 of file stm32f4xx_hal_rcc.h.
Referenced by HAL_PWREx_ControlVoltageScaling(), and HAL_RCC_OscConfig().
#define __HAL_RCC_PLL_ENABLE | ( | ) | (*(__IO uint32_t *) RCC_CR_PLLON_BB = ENABLE) |
Macros to enable or disable the main PLL.
Definition at line 1035 of file stm32f4xx_hal_rcc.h.
Referenced by HAL_PWREx_ControlVoltageScaling(), and HAL_RCC_OscConfig().
#define __HAL_RCC_PLL_PLLM_CONFIG | ( | __PLLM__ | ) | MODIFY_REG(RCC->PLLCFGR, RCC_PLLCFGR_PLLM, (__PLLM__)) |
Macro to configure the PLL multiplication factor.
__PLLM__ | 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 1057 of file stm32f4xx_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.
__PLLSOURCE__ | specifies the PLL entry clock source. This parameter can be one of the following values:
|
Definition at line 1046 of file stm32f4xx_hal_rcc.h.