Home
last modified time | relevance | path

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

/hal_stm32-latest/stm32cube/stm32f4xx/drivers/include/
Dstm32f4xx_ll_system.h776 __STATIC_INLINE void LL_SYSCFG_DFSDM_EnableDelayClock(uint32_t MCHDLY) in LL_SYSCFG_DFSDM_EnableDelayClock() argument
778 SET_BIT(SYSCFG->MCHDLYCR, MCHDLY); in LL_SYSCFG_DFSDM_EnableDelayClock()
789 __STATIC_INLINE void LL_SYSCFG_DFSDM_DisableDelayClock(uint32_t MCHDLY) in LL_SYSCFG_DFSDM_DisableDelayClock() argument
791 CLEAR_BIT(SYSCFG->MCHDLYCR, MCHDLY); in LL_SYSCFG_DFSDM_DisableDelayClock()
Dstm32f4xx_hal_dfsdm.h932 void HAL_DFSDM_DisableDelayClock(uint32_t MCHDLY);
933 void HAL_DFSDM_EnableDelayClock(uint32_t MCHDLY);
/hal_stm32-latest/stm32cube/stm32f4xx/drivers/src/
Dstm32f4xx_hal_dfsdm.c3751 void HAL_DFSDM_DisableDelayClock(uint32_t MCHDLY) in HAL_DFSDM_DisableDelayClock() argument
3755 assert_param(IS_DFSDM_DELAY_CLOCK(MCHDLY)); in HAL_DFSDM_DisableDelayClock()
3758 if(MCHDLY == HAL_MCHDLY_CLOCK_DFSDM2) in HAL_DFSDM_DisableDelayClock()
3778 void HAL_DFSDM_EnableDelayClock(uint32_t MCHDLY) in HAL_DFSDM_EnableDelayClock() argument
3782 assert_param(IS_DFSDM_DELAY_CLOCK(MCHDLY)); in HAL_DFSDM_EnableDelayClock()
3785 tmp = tmp & ~MCHDLY; in HAL_DFSDM_EnableDelayClock()
3787 SYSCFG->MCHDLYCR = (tmp|MCHDLY); in HAL_DFSDM_EnableDelayClock()