Home
last modified time | relevance | path

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

/loramac-node-latest/src/boards/mcu/stm32/STM32L4xx_HAL_Driver/Inc/
Dstm32l4xx_ll_adc.h2457 __STATIC_INLINE void LL_ADC_SetCommonClock(ADC_Common_TypeDef *ADCxy_COMMON, uint32_t CommonClock) in LL_ADC_SetCommonClock() argument
2459 MODIFY_REG(ADCxy_COMMON->CCR, ADC_CCR_CKMODE | ADC_CCR_PRESC, CommonClock); in LL_ADC_SetCommonClock()
2485 __STATIC_INLINE uint32_t LL_ADC_GetCommonClock(ADC_Common_TypeDef *ADCxy_COMMON) in LL_ADC_GetCommonClock() argument
2487 return (uint32_t)(READ_BIT(ADCxy_COMMON->CCR, ADC_CCR_CKMODE | ADC_CCR_PRESC)); in LL_ADC_GetCommonClock()
2519 __STATIC_INLINE void LL_ADC_SetCommonPathInternalCh(ADC_Common_TypeDef *ADCxy_COMMON, uint32_t Path… in LL_ADC_SetCommonPathInternalCh() argument
2521 MODIFY_REG(ADCxy_COMMON->CCR, ADC_CCR_VREFEN | ADC_CCR_TSEN | ADC_CCR_VBATEN, PathInternal); in LL_ADC_SetCommonPathInternalCh()
2541 __STATIC_INLINE uint32_t LL_ADC_GetCommonPathInternalCh(ADC_Common_TypeDef *ADCxy_COMMON) in LL_ADC_GetCommonPathInternalCh() argument
2543 return (uint32_t)(READ_BIT(ADCxy_COMMON->CCR, ADC_CCR_VREFEN | ADC_CCR_TSEN | ADC_CCR_VBATEN)); in LL_ADC_GetCommonPathInternalCh()
5609 __STATIC_INLINE void LL_ADC_SetMultimode(ADC_Common_TypeDef *ADCxy_COMMON, uint32_t Multimode) in LL_ADC_SetMultimode() argument
5611 MODIFY_REG(ADCxy_COMMON->CCR, ADC_CCR_DUAL, Multimode); in LL_ADC_SetMultimode()
[all …]
/loramac-node-latest/src/boards/mcu/stm32/STM32L0xx_HAL_Driver/Src/
Dstm32l0xx_ll_adc.c209 ErrorStatus LL_ADC_CommonDeInit(ADC_Common_TypeDef *ADCxy_COMMON) in LL_ADC_CommonDeInit() argument
212 assert_param(IS_ADC_COMMON_INSTANCE(ADCxy_COMMON)); in LL_ADC_CommonDeInit()
238 ErrorStatus LL_ADC_CommonInit(ADC_Common_TypeDef *ADCxy_COMMON, LL_ADC_CommonInitTypeDef *ADC_Commo… in LL_ADC_CommonInit() argument
243 assert_param(IS_ADC_COMMON_INSTANCE(ADCxy_COMMON)); in LL_ADC_CommonInit()
251 if(__LL_ADC_IS_ENABLED_ALL_COMMON_INSTANCE(ADCxy_COMMON) == 0U) in LL_ADC_CommonInit()
257 LL_ADC_SetCommonClock(ADCxy_COMMON, ADC_CommonInitStruct->CommonClock); in LL_ADC_CommonInit()
/loramac-node-latest/src/boards/mcu/stm32/STM32L0xx_HAL_Driver/Inc/
Dstm32l0xx_ll_adc.h1669 __STATIC_INLINE void LL_ADC_SetCommonClock(ADC_Common_TypeDef *ADCxy_COMMON, uint32_t CommonClock) in LL_ADC_SetCommonClock() argument
1671 MODIFY_REG(ADCxy_COMMON->CCR, ADC_CCR_PRESC, CommonClock); in LL_ADC_SetCommonClock()
1698 __STATIC_INLINE uint32_t LL_ADC_GetCommonClock(ADC_Common_TypeDef *ADCxy_COMMON) in LL_ADC_GetCommonClock() argument
1700 return (uint32_t)(READ_BIT(ADCxy_COMMON->CCR, ADC_CCR_PRESC)); in LL_ADC_GetCommonClock()
1719 __STATIC_INLINE void LL_ADC_SetCommonFrequencyMode(ADC_Common_TypeDef *ADCxy_COMMON, uint32_t Resol… in LL_ADC_SetCommonFrequencyMode() argument
1721 MODIFY_REG(ADCxy_COMMON->CCR, ADC_CCR_LFMEN, Resolution); in LL_ADC_SetCommonFrequencyMode()
1735 __STATIC_INLINE uint32_t LL_ADC_GetCommonFrequencyMode(ADC_Common_TypeDef *ADCxy_COMMON) in LL_ADC_GetCommonFrequencyMode() argument
1737 return (uint32_t)(READ_BIT(ADCxy_COMMON->CCR, ADC_CCR_LFMEN)); in LL_ADC_GetCommonFrequencyMode()
1777 __STATIC_INLINE void LL_ADC_SetCommonPathInternalCh(ADC_Common_TypeDef *ADCxy_COMMON, uint32_t Path… in LL_ADC_SetCommonPathInternalCh() argument
1780 MODIFY_REG(ADCxy_COMMON->CCR, ADC_CCR_VREFEN | ADC_CCR_TSEN | ADC_CCR_VLCDEN, PathInternal); in LL_ADC_SetCommonPathInternalCh()
[all …]
/loramac-node-latest/src/boards/mcu/stm32/STM32L4xx_HAL_Driver/Src/
Dstm32l4xx_ll_adc.c326 ErrorStatus LL_ADC_CommonDeInit(ADC_Common_TypeDef *ADCxy_COMMON) in LL_ADC_CommonDeInit() argument
329 assert_param(IS_ADC_COMMON_INSTANCE(ADCxy_COMMON)); in LL_ADC_CommonDeInit()
355 ErrorStatus LL_ADC_CommonInit(ADC_Common_TypeDef *ADCxy_COMMON, LL_ADC_CommonInitTypeDef *ADC_Commo… in LL_ADC_CommonInit() argument
360 assert_param(IS_ADC_COMMON_INSTANCE(ADCxy_COMMON)); in LL_ADC_CommonInit()
377 if(__LL_ADC_IS_ENABLED_ALL_COMMON_INSTANCE(ADCxy_COMMON) == 0UL) in LL_ADC_CommonInit()
391 MODIFY_REG(ADCxy_COMMON->CCR, in LL_ADC_CommonInit()
406 MODIFY_REG(ADCxy_COMMON->CCR, in LL_ADC_CommonInit()
418 LL_ADC_SetCommonClock(ADCxy_COMMON, ADC_CommonInitStruct->CommonClock); in LL_ADC_CommonInit()
/loramac-node-latest/src/boards/mcu/stm32/STM32L1xx_HAL_Driver/Src/
Dstm32l1xx_ll_adc.c252 ErrorStatus LL_ADC_CommonDeInit(ADC_Common_TypeDef *ADCxy_COMMON) in LL_ADC_CommonDeInit() argument
255 assert_param(IS_ADC_COMMON_INSTANCE(ADCxy_COMMON)); in LL_ADC_CommonDeInit()
281 ErrorStatus LL_ADC_CommonInit(ADC_Common_TypeDef *ADCxy_COMMON, LL_ADC_CommonInitTypeDef *ADC_Commo… in LL_ADC_CommonInit() argument
286 assert_param(IS_ADC_COMMON_INSTANCE(ADCxy_COMMON)); in LL_ADC_CommonInit()
294 if(__LL_ADC_IS_ENABLED_ALL_COMMON_INSTANCE(ADCxy_COMMON) == 0U) in LL_ADC_CommonInit()
300 LL_ADC_SetCommonClock(ADCxy_COMMON, ADC_CommonInitStruct->CommonClock); in LL_ADC_CommonInit()
/loramac-node-latest/src/boards/mcu/stm32/STM32L1xx_HAL_Driver/Inc/
Dstm32l1xx_ll_adc.h2175 __STATIC_INLINE void LL_ADC_SetCommonClock(ADC_Common_TypeDef *ADCxy_COMMON, uint32_t CommonClock) in LL_ADC_SetCommonClock() argument
2177 MODIFY_REG(ADCxy_COMMON->CCR, ADC_CCR_ADCPRE, CommonClock); in LL_ADC_SetCommonClock()
2190 __STATIC_INLINE uint32_t LL_ADC_GetCommonClock(ADC_Common_TypeDef *ADCxy_COMMON) in LL_ADC_GetCommonClock() argument
2192 return (uint32_t)(READ_BIT(ADCxy_COMMON->CCR, ADC_CCR_ADCPRE)); in LL_ADC_GetCommonClock()
2221 __STATIC_INLINE void LL_ADC_SetCommonPathInternalCh(ADC_Common_TypeDef *ADCxy_COMMON, uint32_t Path… in LL_ADC_SetCommonPathInternalCh() argument
2223 MODIFY_REG(ADCxy_COMMON->CCR, ADC_CCR_TSVREFE, PathInternal); in LL_ADC_SetCommonPathInternalCh()
2240 __STATIC_INLINE uint32_t LL_ADC_GetCommonPathInternalCh(ADC_Common_TypeDef *ADCxy_COMMON) in LL_ADC_GetCommonPathInternalCh() argument
2242 return (uint32_t)(READ_BIT(ADCxy_COMMON->CCR, ADC_CCR_TSVREFE)); in LL_ADC_GetCommonPathInternalCh()
5130 ErrorStatus LL_ADC_CommonDeInit(ADC_Common_TypeDef *ADCxy_COMMON);
5131 ErrorStatus LL_ADC_CommonInit(ADC_Common_TypeDef *ADCxy_COMMON, LL_ADC_CommonInitTypeDef *ADC_Commo…