Home
last modified time | relevance | path

Searched refs:APBx (Results 1 – 1 of 1) sorted by relevance

/hal_stm32-latest/stm32cube/stm32h5xx/drivers/include/
Dstm32h5xx_ll_bus.h472 __STATIC_INLINE void LL_APB_DisableClock(uint32_t APBx) in LL_APB_DisableClock() argument
474 SET_BIT(RCC->CFGR2, APBx); in LL_APB_DisableClock()
488 __STATIC_INLINE void LL_APB_EnableClock(uint32_t APBx) in LL_APB_EnableClock() argument
491 CLEAR_BIT(RCC->CFGR2, APBx); in LL_APB_EnableClock()
493 tmpreg = READ_BIT(RCC->CFGR2, APBx); in LL_APB_EnableClock()
508 __STATIC_INLINE uint32_t LL_APB_IsDisabledClock(uint32_t APBx) in LL_APB_IsDisabledClock() argument
510 return ((READ_BIT(RCC->CFGR2, APBx) == APBx) ? 1UL : 0UL); in LL_APB_IsDisabledClock()