| 
    STM32F103xB HAL User Manual
   
    
   
   | 
  
  
  
 
Defines | |
| #define | __HAL_RCC_PLL_ENABLE() (*(__IO uint32_t *) RCC_CR_PLLON_BB = ENABLE) | 
| Macro to enable the main PLL.   | |
| #define | __HAL_RCC_PLL_DISABLE() (*(__IO uint32_t *) RCC_CR_PLLON_BB = DISABLE) | 
| Macro to disable the main PLL.   | |
| #define | __HAL_RCC_PLL_CONFIG(__RCC_PLLSOURCE__, __PLLMUL__) MODIFY_REG(RCC->CFGR, (RCC_CFGR_PLLSRC | RCC_CFGR_PLLMULL),((__RCC_PLLSOURCE__) | (__PLLMUL__) )) | 
| Macro to configure the main PLL clock source and multiplication factors.   | |
| #define | __HAL_RCC_GET_PLL_OSCSOURCE() ((uint32_t)(READ_BIT(RCC->CFGR, RCC_CFGR_PLLSRC))) | 
| Get oscillator clock selected as PLL input clock.   | |
| #define __HAL_RCC_GET_PLL_OSCSOURCE | ( | ) | ((uint32_t)(READ_BIT(RCC->CFGR, RCC_CFGR_PLLSRC))) | 
Get oscillator clock selected as PLL input clock.
| The | clock source used for PLL entry. The returned value can be one of the following: 
  | 
Definition at line 883 of file stm32f1xx_hal_rcc.h.
Referenced by HAL_RCC_OscConfig().
| #define __HAL_RCC_PLL_CONFIG | ( | __RCC_PLLSOURCE__, | |
| __PLLMUL__ | |||
| ) | MODIFY_REG(RCC->CFGR, (RCC_CFGR_PLLSRC | RCC_CFGR_PLLMULL),((__RCC_PLLSOURCE__) | (__PLLMUL__) )) | 
Macro to configure the main PLL clock source and multiplication factors.
| __RCC_PLLSOURCE__ | specifies the PLL entry clock source. This parameter can be one of the following values: 
  | 
| __PLLMUL__ | specifies the multiplication factor for PLL VCO output clock This parameter can be one of the following values: 
  | 
Definition at line 874 of file stm32f1xx_hal_rcc.h.
Referenced by HAL_RCC_OscConfig().
| #define __HAL_RCC_PLL_DISABLE | ( | ) | (*(__IO uint32_t *) RCC_CR_PLLON_BB = DISABLE) | 
Macro to disable the main PLL.
Definition at line 842 of file stm32f1xx_hal_rcc.h.
Referenced by HAL_RCC_OscConfig().
| #define __HAL_RCC_PLL_ENABLE | ( | ) | (*(__IO uint32_t *) RCC_CR_PLLON_BB = ENABLE) | 
Macro to enable the main PLL.
Definition at line 837 of file stm32f1xx_hal_rcc.h.
Referenced by HAL_RCC_OscConfig().
 1.7.6.1