

The PCM1803, manufactured by Texas Instruments, is a high-performance, 24-bit audio analog-to-digital converter (ADC) designed for high-fidelity audio applications. It offers a low noise floor, high dynamic range, and supports multiple audio sampling rates, making it ideal for professional audio equipment, consumer electronics, and other audio processing systems.








The PCM1803 comes in a 20-pin SSOP package. Below is the pin configuration and description:
| Pin Number | Pin Name | Type | Description |
|---|---|---|---|
| 1 | VINL | Analog Input | Left-channel analog input (differential positive) |
| 2 | VINR | Analog Input | Right-channel analog input (differential positive) |
| 3 | VCOM | Analog Output | Common voltage output for decoupling |
| 4 | AGND | Ground | Analog ground |
| 5 | VCC | Power Supply | Analog power supply (5 V) |
| 6 | FMT0 | Digital Input | Audio data format selection (bit 0) |
| 7 | FMT1 | Digital Input | Audio data format selection (bit 1) |
| 8 | SCKI | Digital Input | System clock input |
| 9 | BCK | Digital Input | Audio data bit clock input |
| 10 | LRCK | Digital Input | Audio data word clock input |
| 11 | DOUT | Digital Output | Audio data output |
| 12 | DGND | Ground | Digital ground |
| 13 | VDD | Power Supply | Digital power supply (3.3 V) |
| 14 | PDWN | Digital Input | Power-down control (active low) |
| 15 | BYPAS | Digital Input | Bypass mode control |
| 16 | OSR | Digital Input | Oversampling rate selection |
| 17 | ZCAL | Digital Input | Zero calibration control |
| 18 | TEST | Digital Input | Test mode control (must be tied to DGND for normal operation) |
| 19 | VINL- | Analog Input | Left-channel analog input (differential negative) |
| 20 | VINR- | Analog Input | Right-channel analog input (differential negative) |
Power Supply:
VCC pin and the digital power supply (3.3 V) to the VDD pin. Ensure proper decoupling capacitors are placed close to the power pins.AGND and DGND to the ground plane of the circuit.Analog Input:
VINL, VINL-, VINR, and VINR- pins. Use appropriate coupling capacitors to block DC components.Clock Signals:
Audio Data Format:
FMT0 and FMT1 pins. The PCM1803 supports I2S, left-justified, and right-justified formats.Audio Data Output:
DOUT pin to the digital audio receiver or microcontroller to capture the audio data.Power-Down Mode:
PDWN pin to enable or disable the power-down mode. Pull the pin low to enter power-down mode.The PCM1803 can be interfaced with an Arduino UNO to capture audio data via the I2S protocol. Below is an example Arduino sketch:
#include <I2S.h> // Include the I2S library for audio data handling
void setup() {
// Initialize serial communication for debugging
Serial.begin(9600);
// Initialize I2S in receive mode
if (!I2S.begin(I2S_PHILIPS_MODE, 44100)) {
Serial.println("Failed to initialize I2S!");
while (1); // Halt execution if I2S initialization fails
}
Serial.println("I2S initialized successfully.");
}
void loop() {
// Check if audio data is available
if (I2S.available()) {
int sample = I2S.read(); // Read a 16-bit audio sample
Serial.println(sample); // Print the sample to the serial monitor
}
}
DOUT, BCK, and LRCK pins.No Audio Output:
Distorted Audio:
PCM1803 Not Responding:
PDWN pin is pulled high for normal operation.Q: Can the PCM1803 operate with a single-ended input?
A: No, the PCM1803 requires differential analog inputs for optimal performance. Use a differential amplifier to convert single-ended signals to differential.
Q: What is the maximum sampling rate supported by the PCM1803?
A: The PCM1803 supports sampling rates up to 96 kHz.
Q: How do I select the audio data format?
A: Use the FMT0 and FMT1 pins to configure the desired audio data format. Refer to the datasheet for the pin settings.
Q: Can I use the PCM1803 with a 3.3 V analog power supply?
A: No, the analog power supply (VCC) must be 5 V. The digital power supply (VDD) operates at 3.3 V.
By following this documentation, users can effectively integrate the PCM1803 into their audio systems and troubleshoot common issues.