2024-10-18 06:31 AM - last edited on 2024-10-18 06:50 AM by SofLit
good morning everyone,
i am trying to use the ADC of the stm32h745 disco. for that i connected my ADC to a breadboard with a potentiometer. I wanted to change the value of the potentiometer so i can see on my computer the values. I got inspired by this video: https://www.youtube.com/watch?v=EsZLgqhqfO0. unfortunately, it did not give the values that i want. as you can see, the values where moving between 2000 and 3000 and did not change when i changed the resistance of the potentiometer, even when i disconected directly the wires from the breadboard:
here is my code :
HAL_ADC_Start(&hadc3);
HAL_ADC_PollForConversion(&hadc3,1000);
raw= HAL_ADC_GetValue(&hadc3);
// convert to string out of raw value
sprintf(msg,"%hu\r\n",raw);
HAL_UART_Transmit(&huart1, (uint8_t*)msg, strlen(msg), 1000);
HAL_Delay(1);
I think it might be a problem of my ADC allocation: in fact, i connected it to ADC 3 at pinPF10 because it was one of the only one I could find in the manual. How do we get the other channels?
in the picture, my potentiometer had a max of 5kohm and not 50kohm
Best regards
Solved! Go to Solution.
2024-10-21 01:50 AM
@Jad wrote:
What do you mean by ADC calibration enabling?
Please have a look at the RM0399 section 26.4.8 Calibration (ADCAL, ADCALDIF, ADCALLIN, ADC_CALFACT)
The example I provided to you is enabling the ADC calibration.
2024-10-18 06:45 AM - edited 2024-10-18 06:50 AM
Hello @Jad ,
Did you double check the board schematics and check if that ADC input is not connected to something else on the board?
Did you enable the ADC calibration?
You can also inspire from this example on STM32H743I-EVAL: regular conversion with polling using a potientiometer.
Hope it helps.
PS: Please use </> button to paste your code. See the tips on posting.
2024-10-19 12:37 AM
Thank you for the example, I will examine it precisely.
Those were the only other functions of pf10 that I found. What do you mean by ADC calibration enabling? Do you mean enabeling adc3 global interrupt ? because i did not enable it.
2024-10-19 03:08 AM
i got my error, another channel was put in priority 1, so i desabled it. it works now but i do not know how to know theoretically the max/min digital values and the difference between them in term of voltage
2024-10-21 01:50 AM
@Jad wrote:
What do you mean by ADC calibration enabling?
Please have a look at the RM0399 section 26.4.8 Calibration (ADCAL, ADCALDIF, ADCALLIN, ADC_CALFACT)
The example I provided to you is enabling the ADC calibration.