Lines Matching refs:adc
1073 __STATIC_INLINE uint32_t ADC_DataSingleGet(ADC_TypeDef *adc) in ADC_DataSingleGet() argument
1075 return adc->SINGLEDATA; in ADC_DataSingleGet()
1091 __STATIC_INLINE uint32_t ADC_DataSinglePeek(ADC_TypeDef *adc) in ADC_DataSinglePeek() argument
1093 return adc->SINGLEDATAP; in ADC_DataSinglePeek()
1109 __STATIC_INLINE uint32_t ADC_DataScanGet(ADC_TypeDef *adc) in ADC_DataScanGet() argument
1111 return adc->SCANDATA; in ADC_DataScanGet()
1127 __STATIC_INLINE uint32_t ADC_DataScanPeek(ADC_TypeDef *adc) in ADC_DataScanPeek() argument
1129 return adc->SCANDATAP; in ADC_DataScanPeek()
1133 uint32_t ADC_DataIdScanGet(ADC_TypeDef *adc, uint32_t *scanId);
1136 void ADC_Init(ADC_TypeDef *adc, const ADC_Init_TypeDef *init);
1137 void ADC_Reset(ADC_TypeDef *adc);
1138 void ADC_InitScan(ADC_TypeDef *adc, const ADC_InitScan_TypeDef *init);
1151 void ADC_InitSingle(ADC_TypeDef *adc, const ADC_InitSingle_TypeDef *init);
1166 __STATIC_INLINE void ADC_IntClear(ADC_TypeDef *adc, uint32_t flags) in ADC_IntClear() argument
1168 adc->IFC = flags; in ADC_IntClear()
1182 __STATIC_INLINE void ADC_IntDisable(ADC_TypeDef *adc, uint32_t flags) in ADC_IntDisable() argument
1184 adc->IEN &= ~flags; in ADC_IntDisable()
1203 __STATIC_INLINE void ADC_IntEnable(ADC_TypeDef *adc, uint32_t flags) in ADC_IntEnable() argument
1205 adc->IEN |= flags; in ADC_IntEnable()
1222 __STATIC_INLINE uint32_t ADC_IntGet(ADC_TypeDef *adc) in ADC_IntGet() argument
1224 return adc->IF; in ADC_IntGet()
1246 __STATIC_INLINE uint32_t ADC_IntGetEnabled(ADC_TypeDef *adc) in ADC_IntGetEnabled() argument
1252 ien = adc->IEN; in ADC_IntGetEnabled()
1255 return adc->IF & ien; in ADC_IntGetEnabled()
1269 __STATIC_INLINE void ADC_IntSet(ADC_TypeDef *adc, uint32_t flags) in ADC_IntSet() argument
1271 adc->IFS = flags; in ADC_IntSet()
1284 __STATIC_INLINE void ADC_Start(ADC_TypeDef *adc, ADC_Start_TypeDef cmd) in ADC_Start() argument
1286 adc->CMD = (uint32_t)cmd; in ADC_Start()