cancel
Showing results for 
Search instead for 
Did you mean: 

Hello, I am trying to work with the ADC on my STM32F769 -disco but I do not find an example provided by ST. Then I try now to write myself the program but I do not manage to make the conversion. Something has to be missing on my code. If you can help me ?

Pascalou
Associate
 
3 REPLIES 3
Pascalou
Associate

you will find the main.c in the attached file

OlivierR
ST Employee

Hello,

2 ways to locate examples:

  • Using STM32CubeMx
    • New Project from a board
    • Example Selector
    • check relevant info like
      • board type
      • mcu type
      • mpu/mcu library
  • Using "bash"
$ pwd
/c/Users/***/STM32Cube/Repository/STM32Cube_FW_F7_V1.16.2
 
$ find . -print | grep -i readme.txt | grep ADC | grep F769
./Projects/STM32F769I-Discovery/Examples/ADC/ADC_TemperatureSensor/readme.txt
./Projects/STM32F769I_EVAL/Examples/ADC/ADC_DualModeInterleaved/readme.txt
./Projects/STM32F769I_EVAL/Examples/ADC/ADC_InjectedConversion_Interrupt/readme.txt
./Projects/STM32F769I_EVAL/Examples/ADC/ADC_RegularConversion_DMA/readme.txt
./Projects/STM32F769I_EVAL/Examples/ADC/ADC_RegularConversion_Interrupt/readme.txt
./Projects/STM32F769I_EVAL/Examples/ADC/ADC_RegularConversion_Polling/readme.txt
./Projects/STM32F769I_EVAL/Examples/ADC/ADC_TemperatureSensor/readme.txt
./Projects/STM32F769I_EVAL/Examples/ADC/ADC_TriggerMode/readme.txt
./Projects/STM32F769I_EVAL/Examples/ADC/ADC_TripleModeInterleaved/readme.txt
  •  

Perfectly example how ST Employeeee grep:

one result for Disco board

all other for EVAL board , for basic users unusable on disco...

And maybe you need write here how error or problem in line of your code you have...