データシートサーチシステム
  Japanese  ▼
ALLDATASHEET.JP

X  

  • AD9761ARS

  • AI
    The **AD9761ARS** is a high-performance, dual-channel, 10-bit CMOS Digital-to-Analog Converter (DAC). It is specifically designed for communication systems that require I (In-phase) and Q (Quadrature) signal modulation. --- ### ## Key Technical Specifications | Feature | Specification | | :--- | :--- | | **Resolution** | 10-Bit | | **Channels** | 2 (Dual DACs) | | **Update Rate** | 40 MSPS (Mega Samples Per Second) | | **Supply Voltage** | 2.7 V to 5.5 V | | **Power Dissipation** | ~200 mW (at 5V) | | **Package Type** | 28-Lead SSOP (Shrink Small Outline Package) | | **SFDR** | 70 dB @ 1 MHz Output | --- ### ### Core Electronic Components & Architecture The AD9761 is more than just a converter; it integrates several functional blocks to simplify signal processing: 1. **Dual 10-Bit DAC Core:** The device uses a segmented current source architecture. This minimizes "glitch" energy and ensures high dynamic linearity. 2. **2x Interpolation Filter:** It includes a digital interpolation filter that effectively doubles the sampling rate. This shifts quantization noise to higher frequencies, making the analog reconstruction filter (low-pass filter) easier to design. 3. **Digital Interface:** It utilizes a multiplexed input port. Data is interleaved (I-data followed by Q-data) and latched into the respective DACs on the rising/falling edges of the clock. 4. **Internal Reference:** The chip includes a temperature-compensated 1.20V bandgap voltage reference, though an external reference can be used for higher precision. 5. **Current Outputs:** It provides differential current outputs ($I_{OUTA}$ and $I_{OUTB}$). This helps in rejecting common-mode noise and improves the Signal-to-Noise Ratio (SNR). --- ### ### Application Circuit Implementation When designing a PCB with the AD9761ARS, the following electronic considerations are critical: ```cpp // Example: Conceptual logic for feeding the AD9761 via an FPGA/MCU void send_IQ_Data(int16_t I_sample, int16_t Q_sample) { // 1. Place I-data on the 10-bit bus set_bus(I_sample & 0x3FF); toggle_clock_high(); // Latches I data // 2. Place Q-data on the 10-bit bus set_bus(Q_sample & 0x3FF); toggle_clock_low(); // Latches Q data and updates outputs } ``` * **Power Decoupling:** Use 0.1 µF ceramic capacitors in parallel with 10 µF tantalum capacitors as close to the $V_{DD}$ pins as possible to minimize digital noise. * **Analog Ground (AGND) vs Digital Ground (DGND):** These should be tied together at a single "star" point under the chip to prevent ground loops. * **Termination:** The differential current outputs should be terminated into a resistor (typically 50Ω) or a transformer to convert the current into a voltage signal. --- ### ### Common Use Cases * **Quadrature Modulation:** Generating I and Q components for QAM or QPSK modulation. * **Digital Radio:** Used in cellular base stations and wireless local loops. * **Signal Generators:** Creating complex waveforms with high spectral purity.
    ✨ Follow-up Questions
    • What is the advantage of the 2x interpolation filter in the AD9761?
    • How do you convert the differential current output to a single-ended voltage?
    • What are the pin-compatible alternatives to the AD9761 if more resolution is needed?