Phone

    00852-6915 1330

AD7537 in Practice: Glitch Fixes, Obsolescence, and Replacements

  • Contents

Quick-Reference Card: AD7537 at a Glance

Attribute Detail
Component Type Dual 12-Bit Multiplying DAC
Manufacturer Analog Devices Inc.
Key Spec DAC Ladder Resistance Matching: 0.5%
Supply Voltage 10.8V to 16.5V
Package Options Refer to official datasheet
Lifecycle Status Obsolete / Highly Restricted
Best For Audio applications, synchro controls, and programmable amplifiers

AD7537 product photo or IC package


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

The AD7537 is a dual 12-bit multiplying digital-to-analog converter (DAC) from Analog Devices Inc. that features a precise 0.5% ladder resistance matching and a unique byte-loading structure. Built on the LC2MOS process, it packs two independent 12-bit DACs into a single package, making it highly suitable for applications requiring tightly matched analog control signals, such as programmable attenuators or synchro-to-digital systems.

1.1 Core Architecture & Design Philosophy

Internally, the AD7537 utilizes an R-2R ladder architecture capable of 4-quadrant multiplication. What sets this part apart for legacy microprocessors is its (8+4) byte-loading structure. Instead of requiring a full 12-bit wide bus, it accepts data in an 8-bit LSB (Least Significant Byte) and a 4-bit MSB (Most Significant Byte) format. Furthermore, it features double-buffered data inputs, allowing the microcontroller to load both DACs sequentially but update their analog outputs simultaneously—a critical feature for maintaining phase alignment in audio or motor control.

1.2 Where It Fits in the Signal Chain / Power Path

As a multiplying current-output DAC, the AD7537 sits between a digital controller (MCU/DSP) and the analog output stage. It does not output a voltage directly. Instead, it scales an external analog reference voltage (VREF) based on the digital code applied. You will almost always find this component paired with an external high-speed operational amplifier configured as a current-to-voltage (I-to-V) converter to drive downstream loads.


2. Electrical Characteristics: The Numbers That Matter

2.1 Power Supply & Consumption Profile

The AD7537 requires a supply voltage ($V_{DD}$) between 10.8V and 16.5V. Why it matters: This is unusually high by modern standards. If you are integrating this into a modern 3.3V or 5V system, you will need a dedicated boost converter or a dual-rail supply just to power the DAC. This strict voltage requirement often complicates the power tree in newer designs.

2.2 Performance Specs (Speed, Accuracy, or Efficiency)

  • Settling Time: 1.5 μs. While adequate for audio frequencies and industrial process control, this settling time restricts the AD7537 from being used in high-speed RF or video applications.
  • INL/DNL: ±1 LSB (Max). The low gain error (1 LSB max over temperature) guarantees monotonic behavior, meaning the output will never reverse direction as the digital code increases.
  • Matching: The 0.5% DAC ladder resistance matching ensures that both DAC A and DAC B track each other closely, which is vital for stereo audio panning or differential signal generation.

2.3 Absolute Maximum Ratings — What Will Kill It

  • Supply Limits: Exceeding 16.5V on $V_{DD}$ will cause permanent breakdown of the LC2MOS isolation trenches.
  • Digital Inputs: Applying logic voltages significantly higher than $V_{DD}$ or below GND can trigger latch-up. Always sequence power supplies so that $V_{DD}$ is stable before digital signals are applied.

3. Pinout & Package Guide

3.1 Pin-by-Pin Functional Groups

Pin Group Pins Function
Power VDD, AGND, DGND Supply voltage, analog ground, and digital logic ground.
Data Inputs DB0 - DB7 8-bit wide parallel data bus for byte-loading.
Control WR, CS, A0, A1 Write, Chip Select, and address pins to route data to the correct DAC register (8 LSBs vs 4 MSBs).
Analog VREFA, VREFB External reference voltage inputs (allows 4-quadrant multiplication).
Output IOUTA, IOUTB Current outputs requiring external op-amps for voltage conversion.

3.2 Package Variants & Soldering Notes

Package Pitch Thermal Pad? Soldering Method
Refer to Datasheet N/A No Standard Reflow / Wave

Note: Because this is a legacy part, ensure you are referencing the exact package suffix (e.g., DIP vs PLCC) when verifying footprints, as older through-hole variants are increasingly rare.

3.3 Part Number Decoder

  • AD: Analog Devices standard prefix.
  • 7537: Base series identifier (Dual 12-bit multiplying DAC).
  • Suffixes (e.g., J, K, L, S, T, U): Denote temperature ranges and linearity grades. Verify the exact suffix against the datasheet to ensure INL/DNL specs meet your system requirements.

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: Output Glitches During Updates
  • Root Cause: Charge injection from the internal CMOS switches occurs during the digital-to-analog update phase, resulting in a brief voltage spike.
  • Recommended Fix: Implement an external deglitcher circuit. A common approach is using a dual monostable multivibrator to derive a track-and-hold control signal from the DAC update pulse, masking the glitch from the final output.

  • Problem: Headroom Limits and Clipping

  • Root Cause: Strict voltage reference constraints and the 10.8V–16.5V $V_{DD}$ range can cause the external I-to-V op-amp to clip if not carefully matched to the DAC's output swing.
  • Recommended Fix: Carefully design reference buffer amplifiers. Ensure the external op-amp has adequate supply rails (often ±15V) to handle the full-scale swing without saturating.

  • Problem: Obsolescence and Sourcing

  • Root Cause: The AD7537 is a legacy LC2MOS part that has largely been phased out in favor of newer, lower-voltage SPI/I2C DACs.
  • Recommended Fix: Do not use this part for new designs. Migrate to pin-compatible alternatives like the Texas Instruments DAC7801 (see Section 6).

5. Application Circuits & Integration Examples

5.1 Typical Application: Programmable Audio Attenuator

In a digitally controlled attenuator, the AD7537 acts as a volume control. The audio signal is fed into the VREF pin. Because the DAC supports 4-quadrant multiplication, it can handle AC audio signals directly. The microcontroller writes a 12-bit code to the DAC, which scales the audio signal down. An external low-noise op-amp (like an NE5532 or OPA2134) connected to IOUT and the DAC's internal feedback resistor pin converts the scaled current back into an audio voltage.

5.2 Interface Example: Connecting to a Microcontroller

Because of the (8+4) byte-loading structure, writing to the AD7537 requires two sequential writes over an 8-bit bus.

// Pseudocode for 8+4 byte loading to DAC A
void AD7537_Write_DAC_A(uint16_t dac_value) {
    uint8_t lsb = dac_value & 0xFF;         // Extract lower 8 bits
    uint8_t msb = (dac_value >> 8) & 0x0F;  // Extract upper 4 bits

    // 1. Write LSB to DAC A LSB register
    Set_Address(ADDR_DAC_A_LSB);
    Write_Data_Bus(lsb);
    Pulse_WR_Pin();

    // 2. Write MSB to DAC A MSB register (this also updates the DAC output if configured)
    Set_Address(ADDR_DAC_A_MSB);
    Write_Data_Bus(msb);
    Pulse_WR_Pin();
}

6. Alternatives, Replacements & Cross-Reference

6.1 Pin-Compatible Drop-In Replacements

If you are maintaining a legacy board and cannot source the AD7537, consider these direct or near-direct replacements:

Part Number Manufacturer Key Difference Compatible?
DAC7801 Texas Instruments Direct drop-in equivalent for dual 12-bit parallel multiplying DACs. ? Yes
DAC7602 Texas Instruments Functionally similar, check specific timing specs. ?? Verify Timing
AD7547 Analog Devices Dual 12-bit parallel DAC, but requires a full 12-bit bus (not 8+4). ? No (Layout change)
AD7545 Analog Devices Single channel only. ? No

6.2 Upgrade Path (Better Performance)

For new designs, engineers should abandon parallel-bus DACs entirely. Modern alternatives like the AD5689 (Dual 16-bit) or DAC8562 offer higher resolution, built-in voltage references, and SPI interfaces that drastically reduce PCB routing complexity and footprint size, all while running on standard 3.3V/5V logic.


7. Procurement & Supply Chain Intelligence

  • Lifecycle Status: Obsolete / Unobtainable. The AD7537 is no longer recommended for new designs (NRND) and is generally considered obsolete.
  • Typical MOQ & Lead Time: Sourcing is restricted to secondary market brokers and old stock. Lead times are unpredictable.
  • BOM Risk Factors: Extreme. Relying on this part for active production guarantees supply chain disruptions and exposes you to counterfeit risks on the grey market.
  • Recommended Safety Stock: If maintaining legacy equipment, secure all necessary lifetime buy stock immediately.
  • Authorized Distributors: Check trusted brokers like Rochester Electronics, which sometimes hold authorized end-of-life silicon dies for legacy Analog Devices parts.

8. Frequently Asked Questions

Q: What is the AD7537 used for? The AD7537 is primarily used in audio applications, synchro controls, process control systems, and programmable amplifiers where precise scaling of an analog signal is required.

Q: What are the best alternatives to the AD7537? The Texas Instruments DAC7801 is the closest drop-in replacement. For single-channel needs or board redesigns, the AD7545 or modern SPI DACs are recommended.

Q: Is the AD7537 still in production? No, the AD7537 is largely obsolete and extremely difficult to source through primary authorized distributors, making it a high risk for new BOMs.

Q: Can the AD7537 work with 3.3V logic? No, the AD7537 requires a $V_{DD}$ of 10.8V to 16.5V. Direct interfacing with 3.3V microcontrollers requires dedicated logic level shifters.

Q: Where can I find the AD7537 datasheet and evaluation board? The legacy datasheet can be found in the Analog Devices Inc. archive. Official evaluation boards are no longer manufactured.


9. Resources & Tools

  • Official Datasheet: [Analog Devices Inc. Product Archive]
  • Reference Designs: Look for legacy Analog Devices application notes on "Multiplying DACs" and "I-to-V Converter Design."
  • Community Libraries: Due to its obsolescence, modern Arduino or STM32 HAL libraries are not natively available; custom bit-banging or parallel memory interface (FMC) code is required.
  • SPICE / LTspice Model: Generic R-2R multiplying DAC models in LTspice can simulate the core behavior of the AD7537 for analog stage design.

AD7537JNZ Documents & Media

Download datasheets and manufacturer documentation for Analog Devices Inc. AD7537JNZ.
Datasheets
datasheet
ConflictMineralStatement

AD7537JNZ PCB Symbol, Footprint & 3D Model

Analog Devices Inc. AD7537JNZ

Analog Devices Inc.

IC DAC 12BIT A-OUT 24DIP

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 reserved.