

The SSM2167 Eval Board is a development platform designed by Analog Devices to evaluate the performance of the SSM2167 audio processor. The SSM2167 is a low-voltage, low-power audio processor that integrates noise reduction, compression, and automatic gain control (AGC) into a single chip. The evaluation board simplifies the process of testing and prototyping audio signal processing applications.








The SSM2167 Eval Board provides access to the SSM2167's pins via onboard connectors. Below is the pin configuration for the SSM2167 IC:
| Pin | Name | Description |
|---|---|---|
| 1 | GND | Ground connection for the IC. |
| 2 | IN | Audio input signal. Connect to the microphone or audio source. |
| 3 | GAIN | Gain adjustment pin. Use an external resistor to set the desired gain. |
| 4 | VCAOUT | Voltage-controlled amplifier output. Internally connected to the compressor. |
| 5 | DETECT | Detector output. Used internally for compression and noise gating. |
| 6 | THRESH | Noise gate threshold adjustment. Connect an external resistor to set the level. |
| 7 | OUT | Audio output signal. Connect to the next stage of the audio circuit. |
| 8 | VDD | Positive power supply (2.7 V to 5.5 V). |
The SSM2167 Eval Board can be used with an Arduino UNO for audio signal processing. Below is an example of how to interface the board with the Arduino:
// Example code to read audio signal from SSM2167 Eval Board and display
// the signal level on the serial monitor.
const int audioInputPin = A0; // Analog pin connected to SSM2167 OUT pin
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
int audioSignal = analogRead(audioInputPin); // Read audio signal
Serial.println(audioSignal); // Print signal level to serial monitor
delay(10); // Small delay for stability
}
No Output Signal:
Distorted Audio Output:
Excessive Noise:
Noisy Power Supply:
Q1: Can the SSM2167 Eval Board be used with battery power?
A1: Yes, the board can be powered by a battery as long as the voltage is within the 2.7 V to 5.5 V range.
Q2: How do I adjust the compression ratio?
A2: The compression ratio is internally set and cannot be directly adjusted. However, you can modify the gain and noise gate threshold to influence the overall audio processing.
Q3: Can I use the SSM2167 Eval Board for stereo audio?
A3: No, the SSM2167 is a mono audio processor. For stereo applications, you would need two SSM2167 ICs and corresponding circuitry.
Q4: Is the evaluation board compatible with other microcontrollers?
A4: Yes, the board can be used with any microcontroller that supports analog input, such as Arduino, Raspberry Pi (with ADC), or STM32.