STM32L486xx HAL User Manual
Defines
AHB3 Peripheral Clock Enable Disable
RCC Exported Macros

Enable or disable the AHB3 peripheral clock. More...

Defines

#define __HAL_RCC_FMC_CLK_ENABLE()
#define __HAL_RCC_QSPI_CLK_ENABLE()
#define __HAL_RCC_FMC_CLK_DISABLE()   CLEAR_BIT(RCC->AHB3ENR, RCC_AHB3ENR_FMCEN)
#define __HAL_RCC_QSPI_CLK_DISABLE()   CLEAR_BIT(RCC->AHB3ENR, RCC_AHB3ENR_QSPIEN)

Detailed Description

Enable or disable the AHB3 peripheral clock.

Note:
After reset, the peripheral clock (used for registers read/write access) is disabled and the application software has to enable this clock before using it.

Define Documentation

#define __HAL_RCC_FMC_CLK_DISABLE ( )    CLEAR_BIT(RCC->AHB3ENR, RCC_AHB3ENR_FMCEN)

Definition at line 998 of file stm32l4xx_hal_rcc.h.

Value:
do { \
                                                 __IO uint32_t tmpreg; \
                                                 SET_BIT(RCC->AHB3ENR, RCC_AHB3ENR_FMCEN); \
                                                 /* Delay after an RCC peripheral clock enabling */ \
                                                 tmpreg = READ_BIT(RCC->AHB3ENR, RCC_AHB3ENR_FMCEN); \
                                                 UNUSED(tmpreg); \
                                               } while(0)

Definition at line 958 of file stm32l4xx_hal_rcc.h.

#define __HAL_RCC_QSPI_CLK_DISABLE ( )    CLEAR_BIT(RCC->AHB3ENR, RCC_AHB3ENR_QSPIEN)

Definition at line 1002 of file stm32l4xx_hal_rcc.h.

Value:
do { \
                                                 __IO uint32_t tmpreg; \
                                                 SET_BIT(RCC->AHB3ENR, RCC_AHB3ENR_QSPIEN); \
                                                 /* Delay after an RCC peripheral clock enabling */ \
                                                 tmpreg = READ_BIT(RCC->AHB3ENR, RCC_AHB3ENR_QSPIEN); \
                                                 UNUSED(tmpreg); \
                                               } while(0)

Definition at line 968 of file stm32l4xx_hal_rcc.h.