cancel
Showing results for 
Search instead for 
Did you mean: 

Is fADC=48MHz actually possible?

Andrew Sterian
Associate II

I tried using STM32CubeMX to configure an STM32H725 LQFP-100 device to get fADC=48MHz by getting the ADC Clock Mux output to 96 MHz, and using a /2 prescaler on the ADC1 peripheral but the drop-down for "ADC Clock Prescaler" only allows /4 or higher (24MHz or lower).

0693W000006FtpNQAS.png 0693W000006FtpSQAS.png 

I need fADC=48MHz in order to sustain a high sampling rate. What am I missing?

4 REPLIES 4

What do the datasheet and RM say about the maximum ADC clock?

Do you select properly the ADC clock source? Don't you try APB as source?

I don't Cube.

JW

Bouraoui Chemli
ST Employee

Hi @Andrew Sterian​ 

I assume that it is a limitation regarding CubeMX tool. I suggest to modify in the main.c file the clock Prescaler configuration after the code generation with CubeMX as below:

"AdcHandle_master.Init.ClockPrescaler      = ADC_CLOCK_ASYNC_DIV4; " 

by

"AdcHandle_master.Init.ClockPrescaler      = ADC_CLOCK_ASYNC_DIV2; "

Bouraoui

Thanks Bouraoui. I was hoping this is the case since the data sheet specifically lists such high clock speeds are required in order to maintain >3Msps operation:

0693W000006G1ZSQA0.pngIs there any place where I can file a bug report for CubeMX?

Hi @Andrew Sterian​ 

I raised this internally.

Thank you

Bouraoui