Table of Contents

SAR ADC Explained: How Successive Approximation Converters Work

SAR ADC converter diagram showing binary search from analog input voltage to digital output code

A SAR ADC converter, or successive approximation register analog-to-digital converter, converts an analog input voltage into a digital code by testing one bit at a time. Rather than measuring every possible code directly, the converter uses a binary search: try the midpoint, decide whether the input is higher or lower, then repeat with the next bit until it finds the final code.

As a result, the SAR ADC has become one of the most practical general-purpose ADC architectures. Engineers usually choose it when a design needs moderate to high resolution, deterministic conversion timing, low latency, and reasonable power consumption. You will often find SAR ADCs in sensor interfaces, industrial measurement, battery-powered devices, data acquisition systems, and microcontrollers with integrated ADCs.

Quick answer: A SAR ADC samples the input, holds it steady, compares it against a DAC-generated trial voltage, and uses a successive approximation register to decide each output bit from the most significant bit to the least significant bit.
QuestionShort Answer
What is a SAR ADC?An ADC architecture that finds the digital output code through a bit-by-bit binary search
What does SAR mean?Successive approximation register
What are the key internal blocks?Sample-and-hold circuit, capacitive DAC, comparator, SAR logic, reference input
How many comparison steps are needed?An N-bit SAR ADC normally needs N bit decisions for one conversion
When is SAR a good choice?Low-latency, multiplexed, medium-to-high-resolution measurement where sample rate is not in the extreme flash range

What Is a SAR ADC?

A SAR ADC is an analog-to-digital converter that uses a successive approximation register to determine the digital code representing an analog input. The word "successive" matters because the converter does not guess the whole result at once. Instead, it approximates the answer step by step, starting with the most significant bit (MSB), then moving toward the least significant bit (LSB).

For a 12-bit SAR ADC, that means 12 main bit decisions. A 16-bit SAR ADC, by comparison, needs 16 main bit decisions. Real devices add acquisition, settling, calibration, or interface timing, but the core conversion principle stays the same: one bit decision at a time.

How Does a Successive Approximation ADC Work?

A successive approximation ADC works by combining a sampled input voltage, an internal DAC, a comparator, and SAR control logic. First, the sample-and-hold circuit captures the input so the voltage does not move during conversion. Next, the DAC generates trial voltages that represent candidate digital codes. Finally, the comparator tells the SAR logic whether each trial is too high or too low.

  1. Sample-and-hold captures the input voltage.
  2. SAR logic sets the MSB to 1 and the other bits to 0.
  3. An internal DAC converts that trial code into an analog voltage.
  4. A comparator checks whether the held input is above or below the DAC voltage.
  5. If the input is higher, the SAR keeps the bit. If the input is lower, it clears the bit.
  6. SAR logic repeats the test for the next bit.
  7. After the LSB decision, the register contains the ADC output code.

Binary Search Conversion in a SAR ADC

SAR ADC binary search conversion timeline showing MSB to LSB bit decisions and final digital code
Each SAR bit decision halves the remaining code range until the final digital code is formed.

Binary search is the core idea behind successive approximation. Imagine a 4-bit ADC with 16 possible output codes, from 0000 to 1111. The converter first tests the midpoint, then narrows the range by half with each comparison.

Bit TrialTrial CodeMeaningComparator Decision
MSB1000Test half scaleKeep if input is above half scale
Bit 21100 or 0100Test the midpoint of the remaining rangeKeep or clear
Bit 1Smaller intervalTest againKeep or clear
LSBSmallest intervalFinal code decisionFinish conversion

With each bit, the converter cuts the possible answer range in half. That is why an N-bit SAR ADC scales cleanly with resolution: more bits mean more comparison decisions, but not an exponential increase in comparators.

Sample-and-Hold: Why the Input Must Stay Still

SAR ADC sample-and-hold diagram showing acquire and hold phases with a held input voltage during bit trials
The SAR ADC samples the input during acquisition, then holds that voltage steady while bit trials run.

The binary search only works if the input voltage stays effectively constant during the conversion. During acquisition, the ADC input charges an internal sampling capacitor to the input voltage. During conversion, the ADC isolates that capacitor so the comparator can check the held voltage against DAC trial voltages.

Design PointWhy It Matters
Source impedanceA high source impedance may not charge the sampling capacitor fully during acquisition
Acquisition timeThe input needs enough time to settle before conversion begins
Input driverSome SAR ADCs need an op amp or buffer to drive the switched-capacitor input
MultiplexingAfter switching channels, the input may need extra settling time
Reference stabilityThe reference voltage sets the DAC trial levels and directly affects code accuracy

Capacitive DAC and Comparator Inside a SAR ADC

SAR ADC capacitive DAC and comparator diagram showing VREF, VIN held, VDAC trial, SAR logic, and switch control
The capacitive DAC generates trial voltages and the comparator tells SAR logic whether to keep or clear each bit.

Many modern SAR ADCs use a capacitive DAC, sometimes called a charge-redistribution DAC. Although the exact implementation varies by device, the purpose stays consistent: the DAC generates the analog trial voltage that the comparator checks against the sampled input.

BlockRole in Conversion
Sample capacitor networkCaptures and holds the input voltage
Capacitive DACGenerates trial voltages for each bit decision
ComparatorDecides whether the sampled input is above or below the trial voltage
SAR logicSets, keeps, or clears each bit based on comparator output
Reference inputDefines the full-scale range and DAC step size
Digital interfaceSends the final code to the controller

SAR ADC Strengths

StrengthPractical Meaning
Low latencyA conversion result is available after a defined conversion cycle, without a long digital filter delay
Good resolution rangeCommon SAR devices cover many 8-bit to 18-bit design needs; higher-resolution SAR parts also exist
Efficient architectureOne comparator can be reused for bit decisions, avoiding the comparator explosion of flash ADCs
Multiplexer friendlySAR ADCs can work well in systems that scan multiple input channels
Power scalabilityOften attractive for portable, battery, and embedded systems

SAR ADC Limits and Common Mistakes

MistakeWhy It Causes Problems
Ignoring acquisition timeThe sampled voltage may not settle to the real input before conversion starts
Driving the ADC directly from a weak sensorThe switched-capacitor input can disturb the sensor output
Treating reference voltage as an afterthoughtReference noise or droop appears directly in the conversion result
Choosing only by bit countA 16-bit label does not guarantee 16 noise-free bits in the system
Multiplexing too quicklyThe previous channel can affect the next channel if settling is insufficient

SAR ADC vs Delta-Sigma vs Flash ADC

Comparison infographic showing SAR binary search, delta-sigma oversampling, and flash ADC parallel conversion
SAR, delta-sigma, and flash ADCs use different conversion methods for different speed, latency, and resolution needs.
ArchitectureHow It WorksStrengthsLimitsTypical Fit
SAR ADCSamples input, runs a bit-by-bit binary search using a DAC and comparatorLow latency, efficient, good for multiplexed channelsNeeds careful input settling and reference designSensor acquisition, control loops, industrial data acquisition
Delta-Sigma ADCOversamples the input, shapes noise, and uses digital filteringHigh resolution for low-frequency precision measurementDigital filter latency and lower bandwidthWeigh scales, precision sensors, audio, slow measurement
Flash ADCUses many comparators in parallelExtremely fast conversionComparator count, power, and resolution scaling limitsVery high-speed measurement, RF, radar, fast instrumentation

When Should You Choose a SAR ADC?

Choose a SAR ADC when the design needs low conversion latency, multiplexed channel scanning, practical 8-bit to 18-bit class resolution, moderate to high sampling rates, and reasonable power. Consider delta-sigma when very high resolution at low bandwidth matters more than latency. Finally, consider flash when maximum speed dominates and power, cost, and resolution trade-offs are acceptable.

SAR ADC Selection Checklist

SAR ADC selection checklist infographic covering resolution, sample rate, channels, input range, reference, interface, source drive, and package
Resolution, sample rate, channel count, input range, reference, interface, source drive, and package are core SAR ADC selection checks.
CheckWhat to Confirm
ResolutionRequired bits and required noise-free performance
Sampling rateSamples per second per channel, not only total converter rate
Number of channelsSingle-channel, simultaneous sampling, or multiplexed input
Input typeSingle-ended, pseudo-differential, or fully differential
Input rangeUnipolar, bipolar, rail-to-rail, or reference-scaled input
ReferenceAccuracy, drift, noise, drive capability, and layout
Availability and compliance库存、价格、交期、认证、生命周期:知识库未明确
Need ADC sourcing support? Review available ADC categories at Analog-to-Digital Converter ADC or send a BOM through Upload BOM for requirement checking.

FAQ

What is a SAR ADC in simple terms?

A SAR ADC converts an analog input into a digital code by testing one bit at a time. It starts with the largest bit, compares the input against a DAC-generated trial voltage, then keeps or clears each bit until the final code is complete.

How does a successive approximation ADC work?

It samples the input, holds the voltage steady, uses an internal DAC to generate trial voltages, and uses a comparator to decide whether each trial code is too high or too low. The successive approximation register records those decisions as the output code.

Is a SAR ADC better than a delta-sigma ADC?

Not always. SAR is usually better for low latency, multiplexed inputs, and many embedded measurements. By contrast, delta-sigma is usually better for very high-resolution, low-frequency precision measurement where digital filter latency is acceptable.

2222 720x540

Alice lee

Business Manager

Focused on the electronic components sector, the author shares industry knowledge, product insights, and sourcing perspectives related to modern electronics manufacturing. With close attention to market trends, component applications, and supply chain developments, the content is designed to support engineers, buyers, and businesses in making more informed decisions.