Skip to main content
Graduate
October 18, 2024
Solved

Use of ADC

  • October 18, 2024
  • 1 reply
  • 1047 views

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:

Jad_0-1729257934007.png

 

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?

Capture d’écran 2024-10-15 à 17.39.25.png

Jad_0-1729258070043.png

Jad_1-1729258164197.jpeg

in the picture, my potentiometer had a max of 5kohm and not 50kohm

Best regards

    This topic has been closed for replies.
    Best answer by mƎALLEm

    @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.

    1 reply

    Technical Moderator
    October 18, 2024

    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.

     

    JadAuthor
    Graduate
    October 19, 2024

    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.

    Capture d’écran 2024-10-19 à 09.24.21.png

    Capture d’écran 2024-10-19 à 09.23.32.png

    mƎALLEmAnswer
    Technical Moderator
    October 21, 2024

    @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.