Home
last modified time | relevance | path

Searched refs:ClockSource (Results 1 – 25 of 29) sorted by relevance

12

/btstack/port/stm32-f4discovery-usb/Drivers/STM32F4xx_HAL_Driver/Src/
H A Dstm32f4xx_hal_sai_ex.c181 assert_param(IS_SAI_CLK_SOURCE(hsai->Init.ClockSource)); in SAI_GetInputClock()
186 __HAL_RCC_SAI_BLOCKACLKSOURCE_CONFIG(hsai->Init.ClockSource); in SAI_GetInputClock()
190 __HAL_RCC_SAI_BLOCKBCLKSOURCE_CONFIG((uint32_t)(hsai->Init.ClockSource << 2U)); in SAI_GetInputClock()
206 if(hsai->Init.ClockSource == SAI_CLKSOURCE_PLLR) in SAI_GetInputClock()
221 else if(hsai->Init.ClockSource == SAI_CLKSOURCE_PLLI2S) in SAI_GetInputClock()
234 else if(hsai->Init.ClockSource == SAI_CLKSOURCE_HS) in SAI_GetInputClock()
253 if(hsai->Init.ClockSource == SAI_CLKSOURCE_PLLSAI) in SAI_GetInputClock()
267 else if(hsai->Init.ClockSource == SAI_CLKSOURCE_PLLI2S) in SAI_GetInputClock()
H A Dstm32f4xx_ll_lptim.c125 LPTIM_InitStruct->ClockSource = LL_LPTIM_CLK_SOURCE_INTERNAL; in LL_LPTIM_StructInit()
146 assert_param(IS_LL_LPTIM_CLOCK_SOURCE(LPTIM_InitStruct->ClockSource)); in LL_LPTIM_Init()
166 LPTIM_InitStruct->ClockSource | \ in LL_LPTIM_Init()
H A Dstm32f4xx_hal_tim.c4491 assert_param(IS_TIM_CLOCKSOURCE(sClockSourceConfig->ClockSource)); in HAL_TIM_ConfigClockSource()
4499 switch (sClockSourceConfig->ClockSource) in HAL_TIM_ConfigClockSource()
4607 TIM_ITRx_SetConfig(htim->Instance, sClockSourceConfig->ClockSource); in HAL_TIM_ConfigClockSource()
H A Dstm32f4xx_hal_i2s.c290 assert_param(IS_I2S_CLOCKSOURCE(hi2s->Init.ClockSource)); in HAL_I2S_Init()
/btstack/port/stm32-f4discovery-usb/Drivers/STM32F4xx_HAL_Driver/Inc/
H A Dstm32f4xx_ll_system.h751 __STATIC_INLINE void LL_SYSCFG_DFSDM_SetBitstreamClockSourceSelection(uint32_t ClockSource) in LL_SYSCFG_DFSDM_SetBitstreamClockSourceSelection() argument
753 MODIFY_REG(SYSCFG->MCHDLYCR, SYSCFG_MCHDLYCR_BSCKSEL, ClockSource); in LL_SYSCFG_DFSDM_SetBitstreamClockSourceSelection()
914 __STATIC_INLINE void LL_SYSCFG_DFSDM1_SetClockInSourceSelection(uint32_t ClockSource) in LL_SYSCFG_DFSDM1_SetClockInSourceSelection() argument
916 MODIFY_REG(SYSCFG->MCHDLYCR, SYSCFG_MCHDLYCR_DFSDM1CFG, ClockSource); in LL_SYSCFG_DFSDM1_SetClockInSourceSelection()
939 __STATIC_INLINE void LL_SYSCFG_DFSDM1_SetClockOutSourceSelection(uint32_t ClockSource) in LL_SYSCFG_DFSDM1_SetClockOutSourceSelection() argument
941 MODIFY_REG(SYSCFG->MCHDLYCR, SYSCFG_MCHDLYCR_DFSDM1CKOSEL, ClockSource); in LL_SYSCFG_DFSDM1_SetClockOutSourceSelection()
1183 __STATIC_INLINE void LL_SYSCFG_DFSDM2_SetClockInSourceSelection(uint32_t ClockSource) in LL_SYSCFG_DFSDM2_SetClockInSourceSelection() argument
1185 MODIFY_REG(SYSCFG->MCHDLYCR, SYSCFG_MCHDLYCR_DFSDM2CFG, ClockSource); in LL_SYSCFG_DFSDM2_SetClockInSourceSelection()
1208 __STATIC_INLINE void LL_SYSCFG_DFSDM2_SetClockOutSourceSelection(uint32_t ClockSource) in LL_SYSCFG_DFSDM2_SetClockOutSourceSelection() argument
1210 MODIFY_REG(SYSCFG->MCHDLYCR, SYSCFG_MCHDLYCR_DFSDM2CKOSEL, ClockSource); in LL_SYSCFG_DFSDM2_SetClockOutSourceSelection()
H A Dstm32f4xx_ll_lptim.h67 uint32_t ClockSource; /*!< Specifies the source of the clock used by the LPTIM instance. member
800 __STATIC_INLINE void LL_LPTIM_SetClockSource(LPTIM_TypeDef *LPTIMx, uint32_t ClockSource) in LL_LPTIM_SetClockSource() argument
802 MODIFY_REG(LPTIMx->CFGR, LPTIM_CFGR_CKSEL, ClockSource); in LL_LPTIM_SetClockSource()
H A Dstm32f4xx_hal_i2s.h67 uint32_t ClockSource; /*!< Specifies the I2S Clock Source. member
H A Dstm32f4xx_hal_sai.h101 uint32_t ClockSource; /*!< Specifies the SAI Block x Clock source. member
H A Dstm32f4xx_ll_tim.h2605 __STATIC_INLINE void LL_TIM_SetClockSource(TIM_TypeDef *TIMx, uint32_t ClockSource) in LL_TIM_SetClockSource() argument
2607 MODIFY_REG(TIMx->SMCR, TIM_SMCR_SMS | TIM_SMCR_ECE, ClockSource); in LL_TIM_SetClockSource()
H A Dstm32f4xx_hal_tim.h199 uint32_t ClockSource; /*!< TIM clock sources member
/btstack/port/stm32-l451-miromico-sx1280/Drivers/STM32L4xx_HAL_Driver/Src/
H A Dstm32l4xx_ll_lptim.c132 LPTIM_InitStruct->ClockSource = LL_LPTIM_CLK_SOURCE_INTERNAL; in LL_LPTIM_StructInit()
153 assert_param(IS_LL_LPTIM_CLOCK_SOURCE(LPTIM_InitStruct->ClockSource)); in LL_LPTIM_Init()
173 LPTIM_InitStruct->ClockSource | \ in LL_LPTIM_Init()
H A Dstm32l4xx_hal_tim.c4625 assert_param(IS_TIM_CLOCKSOURCE(sClockSourceConfig->ClockSource)); in HAL_TIM_ConfigClockSource()
4633 switch (sClockSourceConfig->ClockSource) in HAL_TIM_ConfigClockSource()
4741 TIM_ITRx_SetConfig(htim->Instance, sClockSourceConfig->ClockSource); in HAL_TIM_ConfigClockSource()
/btstack/port/stm32-f4discovery-cc256x/Src/
H A Di2s.c40 hi2s2.Init.ClockSource = I2S_CLOCK_PLL; in MX_I2S2_Init()
/btstack/port/stm32-l451-miromico-sx1280/Drivers/STM32L4xx_HAL_Driver/Inc/
H A Dstm32l4xx_ll_lptim.h67 uint32_t ClockSource; /*!< Specifies the source of the clock used by the LPTIM instance. member
913 __STATIC_INLINE void LL_LPTIM_SetClockSource(LPTIM_TypeDef *LPTIMx, uint32_t ClockSource) in LL_LPTIM_SetClockSource() argument
915 MODIFY_REG(LPTIMx->CFGR, LPTIM_CFGR_CKSEL, ClockSource); in LL_LPTIM_SetClockSource()
H A Dstm32l4xx_ll_tim.h3177 __STATIC_INLINE void LL_TIM_SetClockSource(TIM_TypeDef *TIMx, uint32_t ClockSource) in LL_TIM_SetClockSource() argument
3179 MODIFY_REG(TIMx->SMCR, TIM_SMCR_SMS | TIM_SMCR_ECE, ClockSource); in LL_TIM_SetClockSource()
/btstack/port/stm32-f4discovery-cc256x/bsp/
H A Dstm32f4_discovery_audio.c713 hAudioOutI2s.Init.ClockSource = I2S_CLOCK_PLL; in I2S3_Init()
1120 hAudioInI2s.Init.ClockSource = I2S_CLOCK_PLL; in I2S2_Init()
/btstack/port/stm32-f4discovery-usb/bsp/
H A Dstm32f4_discovery_audio.c710 hAudioOutI2s.Init.ClockSource = I2S_CLOCK_PLL; in I2S3_Init()
1116 hAudioInI2s.Init.ClockSource = I2S_CLOCK_PLL; in I2S2_Init()
/btstack/port/stm32-l451-miromico-sx1280/Src/
H A Dmain.c299 sClockSourceConfig.ClockSource = TIM_CLOCKSOURCE_INTERNAL; in MX_TIM2_Init()
/btstack/port/stm32-f4discovery-cc256x/Drivers/STM32F4xx_HAL_Driver/Inc/
H A Dstm32f4xx_hal_i2s.h67 uint32_t ClockSource; /*!< Specifies the I2S Clock Source. member
H A Dstm32f4xx_hal_tim.h199 uint32_t ClockSource; /*!< TIM clock sources member
/btstack/port/stm32-f4discovery-cc256x/Drivers/STM32F4xx_HAL_Driver/Src/
H A Dstm32f4xx_hal_i2s.c281 assert_param(IS_I2S_CLOCKSOURCE(hi2s->Init.ClockSource)); in HAL_I2S_Init()
H A Dstm32f4xx_hal_tim.c4471 assert_param(IS_TIM_CLOCKSOURCE(sClockSourceConfig->ClockSource)); in HAL_TIM_ConfigClockSource()
4479 switch (sClockSourceConfig->ClockSource) in HAL_TIM_ConfigClockSource()
4587 TIM_ITRx_SetConfig(htim->Instance, sClockSourceConfig->ClockSource); in HAL_TIM_ConfigClockSource()
/btstack/port/stm32-l073rz-nucleo-em9304/Drivers/STM32L0xx_HAL_Driver/Src/
H A Dstm32l0xx_hal_tim.c4305 assert_param(IS_TIM_CLOCKSOURCE(sClockSourceConfig->ClockSource)); in HAL_TIM_ConfigClockSource()
4313 switch (sClockSourceConfig->ClockSource) in HAL_TIM_ConfigClockSource()
4421 TIM_ITRx_SetConfig(htim->Instance, sClockSourceConfig->ClockSource); in HAL_TIM_ConfigClockSource()
/btstack/port/stm32-l073rz-nucleo-em9304/Drivers/STM32L0xx_HAL_Driver/Inc/
H A Dstm32l0xx_hal_tim.h165 uint32_t ClockSource; /*!< TIM clock sources member
/btstack/port/stm32-wb55xx-nucleo-freertos/Drivers/STM32WBxx_HAL_Driver/Src/
H A Dstm32wbxx_hal_tim.c4643 assert_param(IS_TIM_CLOCKSOURCE(sClockSourceConfig->ClockSource)); in HAL_TIM_ConfigClockSource()
4651 switch (sClockSourceConfig->ClockSource) in HAL_TIM_ConfigClockSource()
4759 TIM_ITRx_SetConfig(htim->Instance, sClockSourceConfig->ClockSource); in HAL_TIM_ConfigClockSource()

12