BUG and Solution in STM32F0 Multiple ADC Sampling

Uint32_t ADC_Detect(uint32_t AD_Channel)

{

hadc.Instance->CHSELR = 0;

ADC_ChannelConfTypeDef sConfig;

sConfig.Channel = AD_Channel;

sConfig.Rank = ADC_RANK_CHANNEL_NUMBER;

sConfig.SamplingTIme = ADC_SAMPLETIME_1CYCLE_5;

HAL_ADC_ConfigChannel(&hadc, &sConfig);

Uint32_t ADC_result;

/*ADC START*/

If(HAL_ADC_Start(&hadc)!=HAL_OK)

{

While(1)

{

}

}

/*Wait for ADC completed*/

If (HAL_ADC_PollForConversion(&hadc, 10) != HAL_OK)

{

While(1)

{

}

}

Else

{

/*Get the converted value of regular channel*/

ADC_result = HAL_ADC_GetValue(&hadc);

HAL_ADC_Stop(&hadc);

//ADC_result =((ADC_result*3300)>>8);

Return ADC_result;

}

}

Cannot configure multi-channel sampling with ADC produced by CUBE. The value of multi-channel sampling and acquisition is incorrect. After the study, it was found that the underlying function did not clear CHANNEL.

Just add hadc.Instance->CHSELR = 0; in the function to clear the register manually.

Low Frequency Transformer

Encapsulated Transformers are simply transformers in which one or more of the transformer's components are completely sealed. One example of a component is the transformer's coils. This process of encapsulation protects the transformer from dirt, dust, moisture, and any other contaminants.

Epoxy Encapsulated Transformer, PCB Transformer, Low Frequency Transformer, Encapsulated Unit, Electronic Components, Low Voltage Transformer

Shaanxi Magason-tech Electronics Co.,Ltd , https://www.magason-tech.com

Posted on