Phone

    00852-6915 1330

AD7980 16-Bit ADC: Real-World Tradeoffs & Top Alternatives

  • Contents

Quick-Reference Card: AD7980 at a Glance

Attribute Detail
Component Type 16-bit Successive Approximation (SAR) ADC
Manufacturer Analog Devices Inc.
Key Spec 1 MSPS throughput with zero latency
Supply Voltage 2.5 V (VDD) with 1.8 V to 5 V logic interface (VIO)
Package Options Refer to datasheet for exact variants
Lifecycle Status Active (Verify with authorized distributors)
Best For Automated test equipment (ATE) and data acquisition systems

AD7980 product photo or IC package


1. What Is the AD7980? (Definition + Architecture)

The AD7980 is a 16-bit successive approximation register (SAR) analog-to-digital converter from Analog Devices Inc. that delivers 1 MSPS throughput with zero latency and ultra-low 7 mW power dissipation. While datasheets focus heavily on the ideal 16-bit resolution, working engineers value this part because it achieves high-speed data acquisition on a remarkably tight power budget without the pipeline delays common in delta-sigma alternatives.

1.1 Core Architecture & Design Philosophy

The AD7980 relies on a zero-latency SAR architecture. Unlike delta-sigma ADCs that require digital filter settling time, the AD7980 converts the sampled voltage in a single clock cycle. This "no missing codes" design guarantees that every discrete step of the analog input maps accurately to a digital output. The manufacturer separated the core supply (VDD) from the I/O supply (VIO), allowing the high-speed analog circuitry to run optimally at 2.5V while the digital interface natively talks to everything from modern 1.8V FPGAs to legacy 5V microcontrollers.

1.2 Where It Fits in the Signal Chain / Power Path

This ADC sits precisely between your analog front-end (AFE) and your digital controller. Upstream, it requires a precision voltage reference and a low-distortion op-amp (like the ADA4841) to drive its pseudo-differential inputs. Downstream, it feeds converted digital data directly to an MCU, DSP, or FPGA via a versatile SPI-compatible serial interface.


2. Electrical Characteristics: The Numbers That Matter

2.1 Power Supply & Consumption Profile

The AD7980 draws only 4 mW from the VDD supply at 1 MSPS, with total system power dissipation maxing out at 7 mW. Why it matters: Power scales linearly with throughput. If your data acquisition system only needs to sample at 100 kSPS, power consumption drops to roughly 0.7 mW. This makes the AD7980 highly adaptable for both high-speed ATE and battery-powered medical equipment.

2.2 Performance Specs (Speed, Accuracy, or Efficiency)

  • Resolution & Speed: 16-bit at 1 MSPS. Why it matters: You get granular signal detail fast enough to capture high-frequency transients in machine automation.
  • INL (Integral Nonlinearity): ±0.6 LSB typical, ±1.25 LSB maximum. Why it matters: Low INL ensures that the ADC's transfer function remains highly linear across the entire 0 V to VREF range, critical for precision instrumentation.
  • SNR & THD: 91.5 dB SNR and -114 dB THD at 10 kHz (VREF = 5V). Why it matters: A low noise floor and minimal harmonic distortion mean cleaner data when analyzing complex RF or audio-band communication signals.

2.3 Absolute Maximum Ratings — What Will Kill It

  • Analog Inputs: Exceeding VREF or dropping below GND will forward-bias internal ESD diodes. Always clamp your AFE outputs.
  • Supply Sequencing: While robust, improper sequencing between VDD, VIO, and VREF can trigger latch-up. (Refer to the official datasheet for exact absolute maximum voltage values and thermal limits.)

3. Pinout & Package Guide

3.1 Pin-by-Pin Functional Groups

Pin Group Pins Function
Power VDD, VIO, GND VDD (2.5V core), VIO (1.8V-5V logic), System Ground
Analog IN+, IN-, REF Pseudo-differential inputs and external reference voltage
Digital Output SDO Serial Data Output (SPI compatible)
Control/Clock SDI, SCK, CNV Serial Data Input, Serial Clock, Convert Input (triggers sampling)

3.2 Package Variants & Soldering Notes

Package Pitch Thermal Pad? Soldering Method
LFCSP / MSOP Refer to datasheet Refer to datasheet Standard Reflow

Note: For high-vibration applications like machine automation, QFN/LFCSP packages offer better mechanical stability but require strict stencil design to avoid solder voiding on the center pad (if present).

3.3 Part Number Decoder

  • AD: Analog Devices standard prefix.
  • 7980: Base part number indicating 16-bit, 1 MSPS SAR ADC.
  • Suffixes: Indicate package type (e.g., BRMZ for MSOP, BCPZ for LFCSP) and temperature grade (-40°C to +125°C).

4. Known Issues, Errata & Real-World Pain Points

Why this section exists: Community forums, application notes, and field reports reveal problems the datasheet glosses over. This section saves you hours of debugging.

Problem: Voltage Reference Decoupling Sensitivity - Root Cause: The SAR conversion process draws sudden, high-frequency current spikes from the REF pin. If the reference cannot supply this charge instantly, the reference voltage sags. - Recommended Fix: Users frequently experience large jumps in LSBs or damped oscillations on initial samples if decoupling is poor. Place a large, low-ESR capacitor (typically 10 μF to 22 μF) as close to the REF pin as physically possible. Using a dedicated high-bandwidth reference buffer is highly recommended.

Problem: Daisy-Chain / Multiple ADC SPI Conflicts - Root Cause: When connecting multiple AD7980s in a 4-wire CS mode without utilizing a busy indicator, SDO lines can conflict. - Recommended Fix: The SDO line may not revert to a high-impedance state immediately. Ensure only one CS (Chip Select) is low at a time. Carefully verify the timing of CS transitions and implement proper SDI pull-ups to prevent bus contention.


5. Application Circuits & Integration Examples

5.1 Typical Application: Automated Test Equipment (ATE)

In an ATE environment, the AD7980 is typically driven by an ultra-low distortion op-amp (e.g., ADA4841-1) to fully utilize the 91.5 dB SNR. The pseudo-differential input allows IN- to be tied to ground (or a small common-mode voltage), while IN+ takes the active signal (0 V to VREF). The VREF pin is driven by a precision reference like the ADR435 (5V), buffered and heavily decoupled.

AD7980 typical application circuit schematic

5.2 Interface Example: Connecting to a Microcontroller

The versatile SPI/QSPI/MICROWIRE?/DSP compatible serial interface makes MCU integration straightforward. Because VIO handles 1.8V to 5V, you can wire it directly to an STM32 (3.3V) or Arduino (5V) without level shifters.

// Pseudocode for AD7980 SPI read sequence
void read_AD7980_sample() {
    uint16_t adc_data = 0;

    // Pulse CNV high to initiate conversion
    digitalWrite(CNV_PIN, HIGH);
    delayMicroseconds(1); // Wait for conversion time (tCONV max ~710ns)
    digitalWrite(CNV_PIN, LOW);

    // Read 16 bits via SPI
    SPI.beginTransaction(SPISettings(20000000, MSBFIRST, SPI_MODE0));
    adc_data = SPI.transfer16(0x00);
    SPI.endTransaction();

    return adc_data;
}

6. Alternatives, Replacements & Cross-Reference

6.1 Pin-Compatible Drop-In Replacements

When facing stock shortages, engineers often look for an AD7980 alternative or equivalent. While functional equivalents exist, always verify pinout and software timing compatibility.

Part Number Manufacturer Key Difference Compatible?
LTC2368-16 Analog Devices (Linear Tech) Different pinout, similar 16-bit 1MSPS specs ?? Requires PCB spin
ADS8168 Texas Instruments 8-channel multiplexed, internal reference ? Functional alternative only
ADS8363 Texas Instruments Dual, simultaneous sampling ? Functional alternative only
MAX11900 Maxim Integrated 16-bit, 1 MSPS, fully differential ? Requires AFE redesign

6.2 Upgrade Path (Better Performance)

If your next-generation design requires higher dynamic range, consider moving to the AD7982 (18-bit, 1 MSPS) or the AD7984 (18-bit, 1.33 MSPS). These often share similar footprints, allowing for a shared PCB layout with minimal BOM changes.

6.3 Cost-Down Alternatives

If 1 MSPS is overkill for your application, the AD7988-1 (100 kSPS) or AD7988-5 (500 kSPS) offer identical 16-bit architectures at a reduced price point and lower power consumption.


7. Procurement & Supply Chain Intelligence

  • Lifecycle Status: The AD7980 is generally an Active part with broad adoption in industrial sectors.
  • Typical MOQ & Lead Time: Standard reels often require MOQs of 1,000 to 2,500 pieces, though cut tape is readily available. Lead times fluctuate; assume 12–26 weeks during standard market conditions.
  • BOM Risk Factors: High-precision ADCs are highly susceptible to allocation during semiconductor shortages. Single-sourcing the AD7980 requires maintaining adequate safety stock.
  • Recommended Safety Stock: 6 months of production volume, given the difficulty of finding exact pin-for-pin drop-in replacements from competitors.
  • Authorized Distributors: Always procure through authorized channels (e.g., Digi-Key, Mouser, Arrow) to avoid counterfeit ICs that fail to meet stringent INL/DNL specs.

8. Frequently Asked Questions

Q: What is the AD7980 used for? The AD7980 is primarily used in automated test equipment (ATE), data acquisition systems, medical instruments, and machine automation where high-speed, zero-latency analog-to-digital conversion is required.

Q: What are the best alternatives to the AD7980? Top functional competitors include the Texas Instruments ADS8168 and ADS8363, the Maxim Integrated MAX11900, and the LTC2368-16. However, these are not guaranteed drop-in replacements and will likely require PCB layout adjustments.

Q: Is the AD7980 still in production? Yes, the AD7980 is an active component. However, engineers should always verify current lifecycle status and lead times with authorized distributors before starting a new design.

Q: Can the AD7980 work with 3.3V logic? Yes. The AD7980 features a dedicated VIO pin that supports logic interface voltages anywhere from 1.8 V to 5 V, making it natively compatible with 3.3V microcontrollers like STM32 or ESP32.

Q: Where can I find the AD7980 datasheet and evaluation board? The official datasheet, SPICE models, and the EVAL-AD7980SDZ evaluation board can be found on the Analog Devices Inc. website or through major authorized electronics distributors.


9. Resources & Tools

  • Evaluation / Development Kit: EVAL-AD7980SDZ (Requires SDP-B controller board).
  • Reference Designs: Analog Devices provides extensive Circuit Note (CN) documentation for driving SAR ADCs.
  • Community Libraries: Search GitHub for "AD7980 Arduino library" or STM32 HAL SPI examples for quick initialization routines.
  • SPICE / LTspice Model: Available directly from Analog Devices for simulating AFE settling times and reference decoupling behavior.

AD7980SRMZ-EP-RL7 PCB Symbol, Footprint & 3D Model

Analog Devices Inc. AD7980SRMZ-EP-RL7

Analog Devices Inc.

ADC 16BIT 1MSPS LP 10-MSOP

Get a quote

Quantity:

Click To Quote

Kynix

Kynix was founded in 2008, specializing in the electronic components distribution business. We adhere to honesty and ethics as our business philosophy and have gradually established an excellent reputation and credibility in our international business. With the accurate quotation, excellent credit, reasonable price, reliable quality, fast delivery, and authentic service, we have won the praise of the majority of customers.

Join our mailing list!

Be the first to know about new products, special offers, and more.

Leave a Reply

We'd love to hear from you! Feel free to share your thoughts and comments below. Rest assured, your email address will remain private.

Name *
Email *
Captcha *
Rating:

Kynix

  • How to purchase

  • Order
  • Search & Inquiry
  • Shipping & Tracking
  • Payment Methods
  • Contact Us

  • Tel: 00852-6915 1330
  • Email: info@kynix.com
  • Follow Us

authentication

Kynix

© 2008-2026 kynix.com all rights reserve.