Search topics...
ADCPractical Designfoundational

Why is the ADC reference voltage (V_REF) critical, and what can go wrong?

0 upvotes
Practice with AISoon
Study the fundamentals first — ADC topic page

The reference voltage is the ADC's measurement ruler — every conversion result is a ratio of the input voltage to V_REF. If V_REF is noisy by 10 mV, every measurement inherits that 10 mV uncertainty regardless of the ADC's resolution. A 1% error in V_REF produces a 1% error in every reading. No amount of averaging, oversampling, or calibration in the digital domain can fix a noisy reference — the error is baked into every sample.

Common problems in embedded designs: (1) Using VDD directly as V_REF — on many low-cost boards, VREF+ is tied to the 3.3V supply rail, which carries 50-100 mV of switching noise from the voltage regulator, load transients from the MCU's digital core, and ripple from the power source. This noise directly limits the usable ADC resolution to perhaps 8-9 effective bits even on a 12-bit converter. (2) Poor decoupling — even a dedicated VREF pin needs proper bypassing: a 100 nF ceramic capacitor for high-frequency noise and a 1 uF capacitor for bulk energy storage, both placed as close to the pin as physically possible. (3) Temperature drift — cheap voltage references drift significantly with temperature; precision applications need references with low tempco, such as 10 ppm/degC or better. A 50 ppm/degC reference on a 3.3V rail drifts by 0.165 mV per degree — nearly invisible at 10-bit resolution but significant at 12+ bits.

A useful trick: ratiometric measurement. If the sensor is powered from the same reference as the ADC (for example, a potentiometer connected between VREF and GND), V_REF errors cancel out in the ratio. The ADC reads V_sensor / V_REF, and since V_sensor is proportional to V_REF, the reference voltage drops out of the equation. This eliminates reference accuracy as an error source entirely and is widely used for resistive sensors, potentiometers, and bridge circuits.

Source: ADC Q&A