Skip to main content
Matteo Cardani
Associate II
October 26, 2022
Solved

STM32U5 ADC calibration

  • October 26, 2022
  • 2 replies
  • 1718 views

Hello,

I'm using an ST32U5 microcontroller and I'd like to ask some question about the ADC linear and offset calibration feature.

1 - This feature is only available on ADC1 or is it also available on ADC4?

2 - Right now at startup I'm launching the ADC1 calibration with the following parameter :ADC_CALIB_OFFSET_LINEARITY. Does this calibrate both the offset and the gain?

3 - Is there some issues (except for a longer startup time) in launching the calibration every time at startup?

Thank you

Matteo

This topic has been closed for replies.
Best answer by _andreas

The ADC4 has only offset calibration, see page 1084 in RM0456 Rev 3

The ADC1 can do both, and ADC_CALIB_OFFSET_LINEARITY

should calibrate offset and linearity.

2 replies

_andreas
_andreasBest answer
Senior
October 26, 2022

The ADC4 has only offset calibration, see page 1084 in RM0456 Rev 3

The ADC1 can do both, and ADC_CALIB_OFFSET_LINEARITY

should calibrate offset and linearity.

Matteo Cardani
Associate II
November 2, 2022

Thank you!