Analog-to-digital Conversion (adc)
What Is Analog-to-digital Conversion (ADC)?
Analog-to-digital conversion (ADC) is the process of transforming a continuous-amplitude signal into a digital representation consisting of binary numbers that a processor, microcontroller, or digital signal processor can manipulate. The conversion proceeds in two stages: first, a sample-and-hold circuit captures the input voltage at a precisely timed instant, fixing it for the duration of the conversion; second, the quantizer maps the held voltage to the nearest level in a set of 2^N discrete steps, where N is the resolution in bits. The output is a stream of codes that approximates the original signal with an accuracy determined by the sampling rate and the bit width of the converter.
ADC design sits at the core of modern electronics. Every radio receiver, digital camera, medical sensor, and scientific instrument that processes real-world signals passes those signals through an analog-to-digital converter before any digital computation can occur. The performance metrics that define a converter, including signal-to-noise-and-distortion ratio (SINAD), spurious-free dynamic range (SFDR), effective number of bits (ENOB), and full-power input bandwidth, directly determine the fidelity of every downstream processing step.
Quantization and Resolution
Quantization assigns each sampled amplitude to the nearest of 2^N discrete output codes. The difference between the true input and the assigned code is quantization error, which ideally behaves as uniformly distributed white noise with a power of (LSB^2)/12, where LSB is the voltage width of one code step. Each additional bit of resolution halves the step size, reducing quantization noise power by 6 dB and adding approximately one bit to the effective number of bits. At 16 bits, a converter with an input range of 1 V resolves amplitudes to roughly 15 microvolts per step, while at 24 bits the step size falls below 60 nanovolts.
Nonidealities in real converters, including differential nonlinearity, integral nonlinearity, and comparator offset, cause deviations from the ideal staircase transfer function. Calibration techniques, both factory trimming and on-chip digital background calibration, are used to suppress these errors. The Analog Devices application note AN-2003 on on-chip oversampling for SAR ADCs illustrates how digital post-processing of converter outputs can effectively extend resolution beyond the native hardware specification.
Nyquist-rate Architectures
Nyquist-rate converters sample at rates slightly above twice the input signal bandwidth, relying on precision analog circuitry to achieve their specified resolution directly at that rate. The flash architecture connects the input to 2^N - 1 parallel comparators referenced to evenly spaced voltages, resolving all bits in one clock cycle; this makes it the fastest architecture but limits practical resolution to 6 or 8 bits due to the exponential growth in comparator count. The pipeline architecture cascades stages, each resolving a few bits and amplifying the residue for the next stage, enabling 10 to 14 bit resolution at sample rates from tens to hundreds of megasamples per second. The SpringerLink chapter on Nyquist-rate analog-to-digital converters provides a systematic treatment of these architectures, including the error sources that dominate each design.
Oversampling and Delta-Sigma Conversion
Delta-sigma ADCs achieve high resolution by trading speed for accuracy. The modulator samples at a rate far above Nyquist and uses a feedback loop to shape quantization noise toward higher frequencies, where a subsequent digital decimation filter removes it. A second-order modulator provides 15 dB of noise reduction per octave of oversampling ratio, enabling 20 to 24 bit ENOB at audio bandwidths. The Silicon Labs application note AN118 on improving ADC resolution by oversampling explains how even simple oversampling without noise shaping improves resolution at 6 dB per octave, making the technique accessible for lower-cost implementations.
Applications
Analog-to-digital conversion is a fundamental enabling technology across engineering domains, with direct use in:
- Software-defined radio receivers, where wideband ADCs digitize large frequency ranges for digital tuning and demodulation
- Precision scientific instruments, including lock-in amplifiers, impedance analyzers, and mass spectrometer readout electronics
- Medical diagnostics, from portable pulse oximeters to high-resolution MRI signal chains
- Automotive sensing, covering radar return digitization, battery management, and engine control sensor inputs
- Digital audio production, where high-resolution converters capture microphone and instrument signals for recording and post-production