![]() |
STM32F769IDiscovery
1.00
uDANTE Audio Networking with STM32F7 DISCO board
|
Macros | |
#define | __HAL_RCC_SYSCLK_CONFIG(__RCC_SYSCLKSOURCE__) MODIFY_REG(RCC->CFGR, RCC_CFGR_SW, (__RCC_SYSCLKSOURCE__)) |
Macro to configure the system clock source. More... | |
#define | __HAL_RCC_GET_SYSCLK_SOURCE() ((uint32_t)(RCC->CFGR & RCC_CFGR_SWS)) |
Macro to get the clock source used as system clock. More... | |
#define | __HAL_RCC_LSEDRIVE_CONFIG(__RCC_LSEDRIVE__) (MODIFY_REG(RCC->BDCR, RCC_BDCR_LSEDRV, (uint32_t)(__RCC_LSEDRIVE__) )) |
Macro to configures the External Low Speed oscillator (LSE) drive capability. More... | |
#define | __HAL_RCC_GET_PLL_OSCSOURCE() ((uint32_t)(RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC)) |
Macro to get the oscillator used as PLL clock source. More... | |
#define __HAL_RCC_GET_PLL_OSCSOURCE | ( | ) | ((uint32_t)(RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC)) |
Macro to get the oscillator used as PLL clock source.
The | oscillator used as PLL clock source. The returned value can be one of the following:
|
Definition at line 980 of file stm32f7xx_hal_rcc.h.
#define __HAL_RCC_GET_SYSCLK_SOURCE | ( | ) | ((uint32_t)(RCC->CFGR & RCC_CFGR_SWS)) |
Macro to get the clock source used as system clock.
The | clock source used as system clock. The returned value can be one of the following:
|
Definition at line 955 of file stm32f7xx_hal_rcc.h.
#define __HAL_RCC_LSEDRIVE_CONFIG | ( | __RCC_LSEDRIVE__ | ) | (MODIFY_REG(RCC->BDCR, RCC_BDCR_LSEDRV, (uint32_t)(__RCC_LSEDRIVE__) )) |
Macro to configures the External Low Speed oscillator (LSE) drive capability.
<strong>RCC_LSEDRIVE</strong> | specifies the new state of the LSE drive capability. This parameter can be one of the following values:
|
None |
Definition at line 971 of file stm32f7xx_hal_rcc.h.
#define __HAL_RCC_SYSCLK_CONFIG | ( | __RCC_SYSCLKSOURCE__ | ) | MODIFY_REG(RCC->CFGR, RCC_CFGR_SW, (__RCC_SYSCLKSOURCE__)) |
Macro to configure the system clock source.
<strong>RCC_SYSCLKSOURCE</strong> | specifies the system clock source. This parameter can be one of the following values:
|
Definition at line 946 of file stm32f7xx_hal_rcc.h.