

The PCM1822IRTER is a high-performance, low-power stereo analog-to-digital converter (ADC) manufactured by Texas Instruments. It is designed specifically for audio applications, offering a 24-bit resolution and supporting sampling rates of up to 192 kHz. This makes it ideal for high-fidelity audio processing in consumer electronics, professional audio equipment, and other audio systems.
The PCM1822IRTER integrates advanced digital filters and a flexible digital audio interface, simplifying its integration into a wide range of audio designs. Its low power consumption and compact size make it suitable for portable and space-constrained applications.








| Parameter | Value |
|---|---|
| Resolution | 24-bit |
| Sampling Rate | Up to 192 kHz |
| Input Channels | 2 (Stereo) |
| Analog Input Type | Differential or Single-Ended |
| Signal-to-Noise Ratio (SNR) | 103 dB (typical) |
| Total Harmonic Distortion + Noise (THD+N) | -93 dB (typical) |
| Power Supply Voltage | 3.3 V (Digital), 3.3 V or 5 V (Analog) |
| Power Consumption | 14 mW (typical, at 3.3 V) |
| Digital Audio Interface | I²S, Left-Justified, or TDM |
| Package Type | 16-pin WQFN (RTE) |
The PCM1822IRTER is available in a 16-pin WQFN package. Below is the pinout and description:
| Pin No. | Name | Type | Description |
|---|---|---|---|
| 1 | VREF | Analog | Reference voltage for ADC |
| 2 | VINL+ | Analog | Positive input for left channel |
| 3 | VINL- | Analog | Negative input for left channel |
| 4 | VINR+ | Analog | Positive input for right channel |
| 5 | VINR- | Analog | Negative input for right channel |
| 6 | GND | Ground | Ground connection |
| 7 | VDD | Power | Digital power supply (3.3 V) |
| 8 | LRCK | Digital I/O | Left/Right clock for I²S or TDM interface |
| 9 | BCK | Digital I/O | Bit clock for I²S or TDM interface |
| 10 | DIN | Digital I/O | Data input for TDM mode |
| 11 | DOUT | Digital O | Data output for I²S or TDM interface |
| 12 | SCK | Digital I | System clock input |
| 13 | SDA | Digital I/O | I²C data line |
| 14 | SCL | Digital I | I²C clock line |
| 15 | RESET | Digital I | Active-low reset input |
| 16 | VCCA | Power | Analog power supply (3.3 V or 5 V) |
Below is an example of how to interface the PCM1822IRTER with an Arduino UNO using the I²C interface:
#include <Wire.h> // Include the Wire library for I²C communication
#define PCM1822_I2C_ADDRESS 0x4C // Default I²C address of PCM1822IRTER
void setup() {
Wire.begin(); // Initialize I²C communication
Serial.begin(9600); // Initialize serial communication for debugging
// Reset the PCM1822IRTER
pinMode(7, OUTPUT); // Assume RESET pin is connected to Arduino pin 7
digitalWrite(7, LOW); // Hold RESET low
delay(10); // Wait for 10 ms
digitalWrite(7, HIGH); // Release RESET
delay(10); // Wait for the device to initialize
// Configure the PCM1822IRTER via I²C
Wire.beginTransmission(PCM1822_I2C_ADDRESS);
Wire.write(0x00); // Write to a configuration register (example)
Wire.write(0x01); // Example value to configure the device
Wire.endTransmission();
Serial.println("PCM1822IRTER initialized.");
}
void loop() {
// Main loop can handle audio data processing
}
No Output Signal:
Distorted Audio:
I²C Communication Failure:
High Noise or Low SNR:
Q: Can the PCM1822IRTER operate with a single-ended input?
A: Yes, the PCM1822IRTER supports both differential and single-ended inputs. For single-ended operation, connect the negative input pin (e.g., VINL-) to ground.
Q: What is the maximum sampling rate supported?
A: The PCM1822IRTER supports sampling rates of up to 192 kHz.
Q: Does the PCM1822IRTER require an external clock source?
A: Yes, the device requires a stable system clock (SCK) for proper operation. The clock frequency should match the desired sampling rate and audio interface configuration.
Q: Can the PCM1822IRTER be used in battery-powered devices?
A: Yes, its low power consumption (14 mW typical) makes it suitable for battery-powered applications.
This concludes the documentation for the PCM1822IRTER. For further details, refer to the official Texas Instruments datasheet.